Unable to register participant in a meeting

We do have an ISV zoom account and there is a need to register participant in a recurrent zoom meetings via apis. While doing so I am always getting an error
"Registration has not been enabled for this meeting:."

Curl to create recurrent meeting
curl --location --request POST api.zoom.us/v2/users/{userId}/meetings
–header ‘Authorization: Bearer {}’
–header ‘Content-Type: application/json’
–data-raw '{
“topic”: “Collaborative Session”,
“type”: 3,
“password”: “a@A12345”,
“settings”: {
“host_video”: true,
“participant_video”: true,
“join_before_host”: false,
“mute_upon_entry”: true,
“approval_type”: 0,
“audio”: “voip”,
“auto_recording”: “none”,
“registrants_confirmation_email”: false,
“registrants_email_notification”: false,
“meeting_authentication”: false,
“use_pmi”:false,
“registration_type”:1

}
}’

curl to register participant in a meeting

curl --location --request POST ‘https://api.zoom.us/v2/meetings/{meetingId}/registrants
–header ‘Authorization: Bearer {}’
–header ‘Content-Type: application/json’
–data-raw ‘{
“email”: “vgera@cvent.com”,
“first_name”: “Vishal”,
“last_name”: “Gera”
}’

Error:

{
“code”: 404,
“message”: “Registration has not been enabled for this meeting: 95973246268.”
}
Please see if you can help here

Hi @skhandelwal,

Thanks for reaching out about this, and happy to clarify.

To that end, meetings of type 3, “no fixed time” do not currently support registration. In order to register participants for a meeting, you will need to select a meeting with type 8 (recurring meeting with fixed time) to support registration.

Let me know if this helps to clarify,
Will

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.