GET {{baseUrl}}/phone/call_queues?next_page_token=<string>&page_size=30&site_id=<string>&cost_center=<string>&department=<string>
Call queues allow you to route incoming calls to a group of users. For instance, you can use call queues to route calls to various departments in your organization such as sales, engineering, billing, customer service etc.
Use this API to list Call queues. Prerequisites: Scopes: Granular Scopes: Rate Limit Label:
phone:read:admin
phone:read:list_call_queues:admin
Medium
Body
PARAM
Key | Datatype | Required | Description |
next_page_token
|
string | The next page token paginates through a large set of results. A next page token is returned whenever the set of available results exceeds the current page size. The expiration period for this token is 15 minutes. | |
page_size
|
number | The number of records returned from a single API call. | |
site_id
|
string | Unique identifier of the site. Get it from the [List Phone Sites](https://marketplace.zoom.us/docs/api-reference/phone/methods#operation/listPhoneSites) API. | |
cost_center
|
string | The call queue's cost center. | |
department
|
string | The call queue's department. |
HEADERS
Key | Datatype | Required | Description |
Accept
|
string |
RESPONSES
status OK
{
"call_queues": [
{
"extension_id": "<string>",
"extension_number": "<long>",
"id": "<string>",
"name": "<string>",
"phone_numbers": [
{
"id": "<string>",
"number": "<string>",
"source": "internal"
},
{
"id": "<string>",
"number": "<string>",
"source": "internal"
}
],
"site": {
"id": "<string>",
"name": "<string>"
},
"status": "inactive"
},
{
"extension_id": "<string>",
"extension_number": "<long>",
"id": "<string>",
"name": "<string>",
"phone_numbers": [
{
"id": "<string>",
"number": "<string>",
"source": "internal"
},
{
"id": "<string>",
"number": "<string>",
"source": "internal"
}
],
"site": {
"id": "<string>",
"name": "<string>"
},
"status": "inactive"
}
],
"next_page_token": "<string>",
"page_size": "<integer>",
"total_records": "<integer>"
} |
ENDPOINTS