Skip to main content

List client templates

GET 

/clients/templates

JSON-RPC

clients.templates.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: [companies_name, -companies_name, credit, -credit, id, -id, name, -name, routing_plans_name, -routing_plans_name]

    Default value: []
    qstring

    Quick search (wildcards allowed).

    idinteger

    Client template ID.

    namestring

    Name.

    companies_idinteger[]

    Partition ID.

    orig_rate_tables_idinteger[]

    Origination rate table ID.

    routing_plans_idinteger

    Routing plan ID.

Responses​

List of client objects.

Schema
  • Array [
  • object
  • ]

Authorization: X-Api-Key

name: X-Api-Keytype: apiKeyin: headerdescription: Token for API access
curl -L 'https://docs.jerasoft.net/clients/templates' \
-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": [
    "companies_name"
  ],
  "q": "string",
  "id": 0,
  "name": "string",
  "companies_id": [
    0
  ],
  "orig_rate_tables_id": [
    0
  ],
  "routing_plans_id": 0
}