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