Call Queue Managers
GEThttps://api.voxo.co/queue-managers/{recordId}
Call Queue Manager By Id
Retreive queue manager by IdHeader
Parameters
Path- Name
recordId*
- Type
- Integer
- Description
1234
- Name
Authorization*
- Type
- String
- Description
Bearer
{AccessToken}
- Name
Content-Type*
- Type
- String
- Description
application/json
Response
{
"id": 5,
"queueId": 298,
"userId": 1362,
"userEmail": "fred@gmail.com",
"timezone": null,
"userRole": 3,
"receiveReports": 0
}
cURL
curl --location -g \
--request GET 'https://api.voxo.com/queue-managers/1234' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer {accessToken}'
GEThttps://api.voxo.co/queue-managers?queueId={queueId}
Call All Queue Managers
Retreive queue managers for a specific queue IdHeader
Parameters
Query- Name
queueId*
- Type
- Integer
- Description
1234
- Name
Authorization*
- Type
- String
- Description
Bearer
{AccessToken}
- Name
Content-Type*
- Type
- String
- Description
application/json
Response
[
{
"id": 5,
"queueId": 298,
"userId": 1362,
"userEmail": "fred@gmail.com",
"timezone": null,
"userRole": 3,
"receiveReports": 0
},
{
"id": 32,
"queueId": 298,
"userId": 1390,
"userEmail": "cobra2335@yahoo.com",
"timezone": "America/Chicago",
"userRole": 7,
"receiveReports": 0
},
{
"id": 36,
"queueId": 298,
"userId": 797,
"userEmail": "docharrod85@gmail.com",
"timezone": "America/Chicago",
"userRole": 3,
"receiveReports": 1
}
]
cURL
curl --location -g \
--request GET 'https://api.voxo.com/queue-managers?queueId=298' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer {accessToken}'