Logo
Zoom Public API Documentation

Perform batch registration

POST {{baseUrl}}/meetings/:meetingId/batch_registrants

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

Prerequisites:

  • The meeting host must be a Licensed user.
  • The meeting must require registration and should be of type 2, i.e., they should be scheduled meetings. Instant meetings and Recurring meetings are not supported by this API.

Scopes: meeting:write,meeting: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>", "participant_pin_code": "<long>" }, { "email": "<string>", "join_url": "<string>", "registrant_id": "<string>", "participant_pin_code": "<long>" } ] }



Curl
curl -X POST 'https://api.zoom.us/v2/meetings/:meetingId/batch_registrants' -H 'Content-Type: application/json' -H 'Accept: application/json' -d '{"auto_approve":"\u003cboolean\u003e","registrants_confirmation_email":"\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