This page was last edited on October 31, 2023, at 13:29.
Comments or questions about this documentation? Contact us for support!
This is part of the API Basics section of the Web Services API.
You can filter objects using request parameters when doing a list request.
GET .../api/v2/queues?fields=id,name,channel&channel=voice Response: { "statusCode":0, "queues":[{ "id":<queue_1_id>, "name":<queue_1_name>, "channel":"voice" }, ... { "id":<queue_N_id>, "name":<queue_N_name>, "channel":"voice" }] }
You may also combine several filtering parameters to make even more constraints.
GET .../api/v2/system/routing-templates?fields=*&channel=voice&version=1.0.0 Response: { "statusCode":0, "routingTemplates":[{ "id":"00_RouteToSpecDestination", "name":"Route Call to Specified Destination", "description":"Routes calls to a skill or queue", "version":"1.0.0", "channel":"voice", "dependencies":["media", "destination"], "enabled":true, "schema": [...] }, ... { "id":"07_SegmentCallerRouteToSpecDestination", "name":"Play Greeting, Segment Caller, and Route To Specified Destination", "description":"Plays a user-configured greeting, ...", "version":"1.0.0", "channel":"voice", "dependencies":["media", "destination", "data_record_type"], "enabled":false, "schema": [...] }] }