Retrieve all Acd groups from the client account
GET {baseUrl}/acd/groups |
None
If the request is performed, 200 OK is returned. See Return Codes for further possible status codes.
A JSON Structure containing the following fields
Note, the record array has been shortened for readability.
{ "filter": "", "limitStart": 0, "limitPageSize": -1, "records": [ { "QueueMusicID4Sec": -1, "SupervisorAggregationSkill5ID": null, "DistributionAlgorithmID": 1, "ServiceLevelSeconds": 30, ... "bPositionAnnouncement3": false, "TarifAnnouncementWavesID": null, "bCallRedirectionAfterNumberAnnouncement": false } ], "count": 1, "orderBy": "Name", "ascending": true, "status": 200 } |
Retrieve a specific Acd group by its ID.
GET {baseUrl}/acd/groups/group/:id |
:id: the ID of the Acd group.
If the request is performed, 200 OK is returned. See Return Codes for further possible status codes.
A JSON Structure containing the following fields
{ "filter": "", "limitStart": 0, "limitPageSize": -1, "records": [ { "QueueMusicID4Sec": -1, "SupervisorAggregationSkill5ID": null, "DistributionAlgorithmID": 1, "ServiceLevelSeconds": 30, ... "bPositionAnnouncement3": false, "TarifAnnouncementWavesID": null, "bCallRedirectionAfterNumberAnnouncement": false } ], "count": 1, "orderBy": "Name", "ascending": true, "status": 200 } |
Retrieve a specific Acd group by its Name.
GET {baseUrl}/acd/groups/group?name=$name |
$name: the Name of the Acd group.
If the request is performed, 200 OK is returned. See Return Codes for further possible status codes.
A JSON Structure containing the following fields
{ "filter": "", "limitStart": 0, "limitPageSize": -1, "records": [ { "QueueMusicID4Sec": -1, "SupervisorAggregationSkill5ID": null, "DistributionAlgorithmID": 1, "ServiceLevelSeconds": 30, ... "bPositionAnnouncement3": false, "TarifAnnouncementWavesID": null, "bCallRedirectionAfterNumberAnnouncement": false } ], "count": 1, "orderBy": "Name", "ascending": true, "status": 200 } |