Logo
Zoom Public API Documentation

Create users

POST {{baseUrl}}/users

Add a new user to your Zoom account.

Note These rate limits apply when you use the create value for the action field: * 50 requests per day for Free accounts. * 1,500 requests per day for Pro accounts. * 10,000 requests per day for Business+ accounts.

Prerequisites: * A Pro or higher plan.

Scopes: user:write:admin

Rate Limit Label: LIGHT

 

Body PARAM

Key Datatype Required Description 



HEADERS

Key Datatype Required Description 
Content-Type
string
Accept
string




RESPONSES

status Created

{ "email": "<string>", "first_name": "<string>", "id": "<string>", "last_name": "<string>", "type": 1 }



Curl
curl -X POST 'https://api.zoom.us/v2/users' -H 'Content-Type: application/json' -H 'Accept: application/json' -d '{"action":"ssoCreate","user_info":{"email":"\u003cstring\u003e","type":1,"first_name":"\u003cstring\u003e","last_name":"\u003cstring\u003e","display_name":"\u003cstring\u003e","password":"\u003cstring\u003e","feature":{"zoom_phone":"\u003cboolean\u003e","zoom_one_type":268435456},"plan_united_type":"64"}}'

ENDPOINTS