Response 404 on existing Meetings Participants Reports

Hi @denis.stebunov,

Thank you for clarifying, and apologies for misunderstanding!

In regards to the UUIDs, have you tried double encoding these? The / and == can cause issues when they’re not double encoded. For example: /BTjZwi5T+CujsZy+gsZLg== should be double encoded as: %252FBTjZwi5T%252BCujsZy%252BgsZLg%253D%253D

Please let me know if this helps!

Best,
Will

Hi Will,

We seem to be getting the same problem:

Calling {{baseUrl}}/report/meetings/:meetingId/participants via Postman

GET https://api.zoom.us/v2/report/meetings/98716244820/participants - Works
GET https://api.zoom.us/v2/report/meetings/fcaPo%2FEMTdOJjj2XL4bsmw%3D%3D/participants - 404 Not Found

UUID for the event is fcaPo/EMTdOJjj2XL4bsmw==

Any ideas?

Thanks,
Ben

Hi Ben

Maybe you can try to double encode the UUID

/ double encoded is %252F

But some times, this does not work also.

Best regards

Hey @ben.steeples,

As @patricio.martinez suggested—can you try double encoding this as follows: fcaPo%252FEMTdOJjj2XL4bsmw%253D%253D

Let me know if this helps,
Will