Adding Meeting Participants problem via REST API

Hi Guys,

I am able to create and delete Zoom meeting using rest API but once
i tried to add Participants in this meeting getting error :

{"code":3001,"message":"Meeting does not exist: 82455761911."}

using end points to add Registrant as

var apiUrl = “https://api.zoom.us/v2”;
var url = $“{apiUrl}/meetings/{meetingId}/registrants?occurence_ids={occurrenceIds}”;

Regards
Rishi

Hi @ajaymmmec2008 ,

You may need to try with meeting uuid or drop the occurrence id. Please review these two blogs for guidance:

Hi ,
I am still unable to find the solution for this issue related to “Meeting does not exist: 88037927932.” error code is : 3001

I am create a meeting successfully with meeting id is : 88037927932

and i am also getting this meeting info using this meeting id in next call
but once i try to add Participants (meet.ajay009@gmail.com) in this meeting
via api call https://api.zoom.us/v2/meetings/88037927932/registrants?occurence_ids=1728458040000,1728544440000
get error : {“code”:3001,“message”:“Meeting does not exist: 88037927932.”}

i am using this code to add participants in meeting

please help me.

Thank You

Hi @ajaymmmec2008 you putting quotes around the occurrence ids? For instance “1728458040000”, “1728544440000”?