Logo
Zoom Public API Documentation

List call queues

GET {{baseUrl}}/phone/call_queues?next_page_token=BJLYC6PABbAHdjwSkGVQeeR6B1juwHqj3G2&page_size=30

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:

  • Pro, Business, or Education account
  • Account owner or admin permissions
  • Zoom Phone license

Scopes: phone:read:admin

Rate Limit Label: Medium

 

Body PARAM

Key Datatype Required Description 
next_page_token
string The next page token is used to paginate through large result sets. A next page token will be 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.



HEADERS

Key Datatype Required Description 
Accept
string




RESPONSES

status OK

{ "call_queues": [ { "extension_id": "DgKe5UPTTlODBvcgmRIlPw", "extension_number": 26000026001, "id": "3PNsZB50TNev4pgBjtKeDw", "name": "ApiTA_2020_12_21_19_54_05_476", "phone_numbers": [ { "id": "KsxwNLEhQ0SJ4U4Bor4ShA", "number": "+12058945717", "source": "internal" }, { "id": "KsxwNLEhQ0SJ4U4Bor4ShA", "number": "+12058945717", "source": "internal" } ], "site": { "id": "8f71O6rWT8KFUGQmJIFAdQ", "name": "Main Site" }, "status": "active" }, { "extension_id": "DgKe5UPTTlODBvcgmRIlPw", "extension_number": 26000026001, "id": "3PNsZB50TNev4pgBjtKeDw", "name": "ApiTA_2020_12_21_19_54_05_476", "phone_numbers": [ { "id": "KsxwNLEhQ0SJ4U4Bor4ShA", "number": "+12058945717", "source": "internal" }, { "id": "KsxwNLEhQ0SJ4U4Bor4ShA", "number": "+12058945717", "source": "internal" } ], "site": { "id": "8f71O6rWT8KFUGQmJIFAdQ", "name": "Main Site" }, "status": "active" } ], "next_page_token": "OvrVMfenVmKgsH0SqfWQ2jgUsHFGXeanCB2", "page_size": 30, "total_records": 1 }



Curl
curl -X GET 'https://api.zoom.us/v2/phone/call_queues?next_page_token=BJLYC6PABbAHdjwSkGVQeeR6B1juwHqj3G2&page_size=30?next_page_token=BJLYC6PABbAHdjwSkGVQeeR6B1juwHqj3G2&page_size=30' -H 'Accept: application/json'

ENDPOINTS