Skip to main content

List collectors

GET 

/system/collectors

JSON-RPC

system.collectors.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]

    Default value: []
    idstring[]

    Collector ID.

    Possible values: non-empty and <= 64 characters

    typestring

    Type.

    Possible values: [radius, lnp, flnp, fxdrs, ac, sip]

Responses​

List of collector objects.

Schema
  • Array [
  • object
  • ]

Authorization: X-Api-Key

name: X-Api-Keytype: apiKeyin: headerdescription: Token for API access
curl -L 'https://docs.jerasoft.net/system/collectors' \
-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"
  ],
  "id": [
    "string"
  ],
  "type": "radius"
}