Can't retrieve data when Meeting UUID contains double slash ("//")

Hello Tommy,
You can consider this meeting: https://api.zoom.us/v2/meetings/98607808189
“uuid” : “sm7+lAXSTHOhLqlwyK2y+g==”

When I hit API https://api.zoom.us/v2/past_meetings/sm7+lAXSTHOhLqlwyK2y+g==/participants
It gives same error
System.HttpResponse[Status=null, StatusCode=404] {“code”:3001,“message”:“Meeting does not exist: sm7+lAXSTHOhLqlwyK2y+g==.”}

I have tried to pass the UUID in double encoding form also but the same error. Could you please check. I can send you JWT token also if you want.

So I was fetching the Meeting UUID from API ‘/meetings/{meetingId}’, that’s why UUID was showing meeting doesn’t exist when I was trying to get participeants “/past_meetings/{meetingUUID}/participants”.

Now I have used API ‘/past_meetings/{meetingId}/instances’ to get Meeting UUID and receive the response.
Meeting ID:***********, MeetingUUID: xV77gvsdS/qyoxYkZ1OemA==

https://api.zoom.us/v2/past_meetings/xV77gvsdS/qyoxYkZ1OemA==/participants

The strange thing is one of the participants is showing twice in the response.

Response: System.HttpResponse[Status=null, StatusCode=200] {“page_count”:1,“page_size”:30,“total_records”:3,“next_page_token”:"",“participants”:[{“id”:“s8PmOOG_QDiDJF65rLI2Wg”,“name”:“Arjun Srivastava",“user_email”:"arjun.srivastava@bsci.com”},{“id”:“rxktD3y1STGb1TQP2ejhqg”,“name”:“aa ss",“user_email”:"an----4@gmail.com”},{“id”:“rxktD3y1STGb1TQP2ejhqg”,“name”:“aa ss",“user_email”:"an----4@gmail.com”}]}

Do you know why it showing the same person twice?

*This post has been edited to remove any meeting / webinar IDs

Hey @arjun.bsci,

Happy to hear you got the correct meeting UUID.

One of the reasons a participant will be shown twice, is if they joined the meeting, left, and then joined the meeting again.

Thanks,
Tommy

1 Like

hi

when I use this waDP0LgnRTe8Bm5TotjsvA%253D%253D meeting UUID to get polls from meeting using this report/meetings/waDP0LgnRTe8Bm5TotjsvA%253D%253D/polls Endpoint it is giving me 400 error can you please tell me what’s wrong in this?

Thank you

Hi @mitul.bhanushali,

Can you provide the original UUID not encoded, and an example of the full request URL you’re using? This will help me to debug.

Thanks!
Will

I have similar issue - cannot receive data for meeting with following UUID: REDACTED . I’ve been trying to put it as is, encode and double encode and nothing works.
I’m using this endpoint: https://api.zoom.us/v2/report/meetings/{meetingID}/participants

I’m getting response visible below:
{
“code”: 3001,
“message”: “Meeting does not exist: REDACTED”
}

What should I do?

Hi @Rotmistrz ,

Are you trying to retrieve a scheduled or past meeting? Could the meeting have been deleted? If you’re trying to retrieve a past meeting, make sure you’re using a the new uuid that’s generated once a meeting ends.

You can get that new uuid using this endpoint: https://marketplace.zoom.us/docs/api-reference/zoom-api/meetings/pastmeetings

Gianni

Hi Gianni,
touché! I’d been trying to use the id of the meeting, not the past meeting. When I use the past meeting id, it works. Thank you!

1 Like

Awesome @Rotmistrz , glad it’s working as expected :slight_smile: