Logo
Zoom Public API Documentation

Add assistants

POST {{baseUrl}}/users/:userId/assistants

Assign assistants to a user. In the request body, provide either the user's ID or the user's email address. For user-level apps, pass the me value instead of the userId parameter.

Assistants are the users to whom the current user has assigned scheduling privilege. Assistants can schedule meetings on behalf of the current user, and can also manage and act as an alternative host for all meetings if the admin has enabled the co-host option on the account.

Prerequisites: * The user as well as the assistant must have Licensed or an On-prem license. * Assistants must be under the current user's account, or the assistants' account must be in the same organization as the current user's account.

Scopes: user:write:admin,user:write

Rate Limit Label: Medium

 

Body PARAM

Key Datatype Required Description 



HEADERS

Key Datatype Required Description 
Content-Type
string
Accept
string




RESPONSES

status Created

{ "add_at": "<dateTime>", "ids": "<string>" }



Curl
curl -X POST 'https://api.zoom.us/v2/users/:userId/assistants' -H 'Content-Type: application/json' -H 'Accept: application/json' -d '{"assistants":[{"email":"\u003cstring\u003e","id":"\u003cstring\u003e"},{"email":"\u003cstring\u003e","id":"\u003cstring\u003e"}]}'

ENDPOINTS