Logo
Zoom Public API Documentation

Get user level outbound calling countries and regions

GET {{baseUrl}}/phone/users/:userId/outbound_calling/countries_regions?next_page_token=<string>&page_size=30

Returns the user level outbound calling countries and regions.

Prerequisites: * A Business or Enterprise account * A Zoom Phone license

Scopes: phone:read:admin

Granular Scopes: phone:read:user_outbound_calling_rule:admin

Rate Limit Label: LIGHT

 

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 returns 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 in a single API call.



HEADERS

Key Datatype Required Description 
Accept
string




RESPONSES

status OK

{ "countries_regions": [ { "name": "<string>", "code": "<integer>", "iso_code": "<string>", "rule": 2, "enabled_carrier": [ "<string>", "<string>" ] }, { "name": "<string>", "code": "<integer>", "iso_code": "<string>", "rule": 1, "enabled_carrier": [ "<string>", "<string>" ] } ], "next_page_token": "<string>", "page_size": 30 }



Curl
curl -X GET 'https://api.zoom.us/v2/phone/users/:userId/outbound_calling/countries_regions?next_page_token=<string>&page_size=30?next_page_token=<string>&page_size=30' -H 'Accept: application/json'

ENDPOINTS