Skip to main content

List operators

GET 

/dids/operators

JSON-RPC

dids.operators.search

Request​

Bodyrequired

    limitinteger

    Number of rows to return (for pagination).

    Default value: 20
    offsetinteger

    Number of rows to skip (for pagination).

    Default value: 0
    orderstring[]

    List of columns to order results by.

    Possible values: [id, -id, name, -name, num_dids, -num_dids]

    Default value: []
    qstring

    Quick search (wildcards allowed).

    idinteger[]

    DID operator ID.

    companies_idinteger[]

    Partition ID.

    include_countboolean

    If True, result will include counts of DIDs assigned to the operator. Use with caution as counts may significantly slow down the request.

    Default value: false
    namestring

    Name.

Responses​

List of DID operator objects.

Schema
  • Array [
  • object
  • ]

Authorization: X-Api-Key

name: X-Api-Keytype: apiKeyin: headerdescription: Token for API access
curl -L 'https://docs.jerasoft.net/dids/operators' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
-H 'X-Api-Key: <X-Api-Key>'
Request Collapse all
Auth
Body required
{
  "limit": 20,
  "offset": 0,
  "order": [
    "id"
  ],
  "q": "string",
  "id": [
    0
  ],
  "companies_id": [
    0
  ],
  "include_count": false,
  "name": "string"
}