Logo
Zoom Public API Documentation

List region's users

GET {{baseUrl}}/contact_center/regions/:regionId/users?role_id=<string>

Retrieve the list of a region's assigned agents.

Scopes: contact_center_region:read:admin

Rate Limit Label: MEDIUM

 

Body PARAM

Key Datatype Required Description 
role_id
string The role's ID.



HEADERS

Key Datatype Required Description 
Accept
string




RESPONSES

status OK

{ "next_page_token": "<string>", "page_size": 30, "total_records": "<integer>", "users": [ { "user_id": "<string>", "display_name": "<string>", "user_email": "<email>", "role_id": "<string>", "role_name": "<string>" }, { "user_id": "<string>", "display_name": "<string>", "user_email": "<email>", "role_id": "<string>", "role_name": "<string>" } ] }



Curl
curl -X GET 'https://api.zoom.us/v2/contact_center/regions/:regionId/users?role_id=<string>?role_id=<string>' -H 'Accept: application/json'

ENDPOINTS