Logo
Zoom Public API Documentation

Perform batch registration

POST {{baseUrl}}/webinars/:webinarId/batch_registrants

Register up to 30 registrants at once for a scheduled webinar that requires registration.

Prerequisites:

  • The webinar host must be a licensed user.
  • The webinar should be type 5, a scheduled webinar. Other types of webinars are not supported by this API.

Scopes: webinar:write,webinar:write:admin

Rate Limit Label: HEAVY

 

Body PARAM

Key Datatype Required Description 



HEADERS

Key Datatype Required Description 
Content-Type
string
Accept
string




RESPONSES

status Created

{ "registrants": [ { "email": "<string>", "join_url": "<string>", "registrant_id": "<string>" }, { "email": "<string>", "join_url": "<string>", "registrant_id": "<string>" } ] }



Curl
curl -X POST 'https://api.zoom.us/v2/webinars/:webinarId/batch_registrants' -H 'Content-Type: application/json' -H 'Accept: application/json' -d '{"auto_approve":"\u003cboolean\u003e","registrants":[{"email":"\u003cemail\u003e","first_name":"\u003cstring\u003e","last_name":"\u003cstring\u003e"},{"email":"\u003cemail\u003e","first_name":"\u003cstring\u003e","last_name":"\u003cstring\u003e"}]}'

ENDPOINTS