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: Rate Limit Label: webinar:write
,webinar:write:admin
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>"
}
]
} |
ENDPOINTS