Logo
Zoom Public API Documentation

Add a webinar registrant

POST {{baseUrl}}/webinars/:webinarId/registrants?occurrence_ids=<string>

Create and submit a user's registration for a webinar. Zoom users with a Webinar plan have access to creating and managing webinars. Webinars allow hosts to broadcast a Zoom meeting to up to 10,000 attendees. Scheduling a webinar with registration requires your registrants to complete a brief form before receiving the link to join the webinar.

Prerequisites: * A Pro or higher plan with the Webinar add-on.

Scopes: webinar:write,webinar:write:admin

Rate Limit Label: LIGHT

 

Body PARAM

Key Datatype Required Description 
occurrence_ids
string A comma-separated list of webinar occurrence IDs. Get this value with the [Get a webinar](/docs/api/rest/reference/zoom-api/methods/#operation/webinar) API. Make sure the `registration_type` is 3 if updating multiple occurrences with this 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>" } ] }



Curl
curl -X POST 'https://api.zoom.us/v2/webinars/:webinarId/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":"1-3 months","role_in_purchase_process":"Not involved","language":"jp-JP","source_id":"\u003cstring\u003e"}'

ENDPOINTS