Logo
Zoom Public API Documentation

List user schedulers

GET {{baseUrl}}/users/:userId/schedulers

List all of a user's schedulers. For user-level apps, pass the me value instead of the userId parameter.

Schedulers in this context are users who can schedule meetings for the current user. For example, if the current user, the user whose userId was passed in the path parameter, is User A, this API's response will list all users for whom User A can schedule and manage meetings. User A is the assistant of these users, and thus has scheduling privilege for these users.

Prerequisites * Current user must be under the same account as the scheduler.

Scopes: user:read:admin,user:read

Rate Limit Label: Medium

 

Body PARAM

Key Datatype Required Description 



HEADERS

Key Datatype Required Description 
Accept
string




RESPONSES

status OK

{ "schedulers": [ { "email": "<string>", "id": "<string>", "pmi": "<long>" }, { "email": "<string>", "id": "<string>", "pmi": "<long>" } ] }



Curl
curl -X GET 'https://api.zoom.us/v2/users/:userId/schedulers' -H 'Accept: application/json'

ENDPOINTS