Logo
Zoom Public API Documentation

Add a meeting registrant

POST {{baseUrl}}/meetings/:meetingId/registrants?occurrence_ids=<string>

Create and submit a user's registration to a meeting. See Customizing webinar registration for details on how to set the requirements for these fields. Note that there is a maximum limit of 4,999 registrants per meeting and users will see an error if the meeting's capacity is reached.

Prerequisites: * The host must be a Licensed user type.

Scopes: meeting:write:admin,meeting:write

Rate Limit Label: Light

 

Body PARAM

Key Datatype Required Description 
occurrence_ids
string A comma-separated list of meeting occurrence IDs. You can get this value with the [Get a meeting](/docs/api-reference/zoom-api/methods#operation/meeting) API.



HEADERS

Key Datatype Required Description 
Content-Type
string
Accept
string




RESPONSES

status Created

{ "id": "<long>", "join_url": "<string>", "registrant_id": "<string>", "start_time": "<dateTime>", "topic": "<string>", "occurrences": [ { "duration": "<integer>", "occurrence_id": "<string>", "start_time": "<dateTime>", "status": "<string>" }, { "duration": "<integer>", "occurrence_id": "<string>", "start_time": "<dateTime>", "status": "<string>" } ], "participant_pin_code": "<long>" }



Curl
curl -X POST 'https://api.zoom.us/v2/meetings/:meetingId/registrants?occurrence_ids=<string>?occurrence_ids=<string>' -H 'Content-Type: application/json' -H 'Accept: application/json' -d '{"email":"\u003cemail\u003e","first_name":"\u003cstring\u003e","last_name":"\u003cstring\u003e","address":"\u003cstring\u003e","city":"\u003cstring\u003e","state":"\u003cstring\u003e","zip":"\u003cstring\u003e","country":"\u003cstring\u003e","phone":"\u003cstring\u003e","comments":"\u003cstring\u003e","custom_questions":[{"title":"\u003cstring\u003e","value":"\u003cstring\u003e"},{"title":"\u003cstring\u003e","value":"\u003cstring\u003e"}],"industry":"\u003cstring\u003e","job_title":"\u003cstring\u003e","no_of_employees":"","org":"\u003cstring\u003e","purchasing_time_frame":"No timeframe","role_in_purchase_process":"Evaluator/Recommender","language":"Tr-TR","auto_approve":"\u003cboolean\u003e"}'

ENDPOINTS