How to get Meeting by registration_url?

I am trying to capture attendance for Meeting/Webinars. Our staff input the registration_url into our in house system. I am trying to generate an attendance report based off of this.

I noticed that this post from 2020, stating that there is no capacity for this:

Is there anything in 2023 that will allow me to do this?

Thanks in advance!

Hi @kia

Thanks for reaching out to the Zoom Developer Forum and welcome to our community!
I am happy to help here!

Have you looked into our Dashboard Endpoints?
You can track the participants in past meetings, using the following endpoint:

https://marketplace.zoom.us/docs/api-reference/zoom-api/methods/#operation/dashboardMeetingParticipants

You can also take a look into one of our Report endpoints:
Get meeting participate reports here:

https://marketplace.zoom.us/docs/api-reference/zoom-api/methods/#operation/reportMeetingParticipants

Let me know if this helps,
Best,
Elisa

Hi Elisa

Thanks for getting in touch!

I am actually planning on using these end points to achieve what I want, but I was wondering whether instead of:

/metrics/meetings/{meetingId}/participants

Could I do something like this?

/metrics/meetings/{registration_url}/participants

It would be really handy if this is possible. Our staff here input the registration_url into our in house system, which clients then use to register for the meeting. It would save a lot of work if I could filter by registration_url and then update our in house system accordingly with the response I get back from Zoom.

Thanks in advance and please let me know if I don’t make any sense :slight_smile:

Hi @kia
Unfortunately, you can not query the report endpoint using the registration_url as a query parameter.
You could only use either the meeting id or meeting uuid to query those endpoints.
Hope this helps,
Elisa