Get participants not listing registrant_id when using "include_fields=registrant_id"

Description
trying to obtain registrant_id via the get participant, and it isn’t being returned. I also set page_size = 300, and it still list the default of 30

https://api.zoom.us/v2/metrics/meetings/95587135285/participants?type=live?page_size=300?include_fields=registrant_id

Error
no error

Which App Type (OAuth / Chatbot / JWT / Webhook)?
JWT

Which Endpoint/s?
https://api.zoom.us/v2/metrics/meetings/95587135285/participants?type=live?page_size=300?include_fields=registrant_id

Hey @dbailey,

Thank you for reaching out to the Zoom Developer Forum. Looking at the endpoint that you’re using, I would try changing the question mark character between /participants and the query to an ampersand (&) so that the endpoint was as follows: https://api.zoom.us/v2/metrics/meetings/95587135285/participants&type=live?page_size=300?include_fields=registrant_id

I hope that helps!

Thanks,
Max

{“code”:3001,“message”:“Meeting does not exist: 95587135285/participants&type=live.”}
{“code”:3001,“message”:“Meeting does not exist: 95587135285/participants&type=past.”}

Hey @dbailey,

Thank you for providing additional information. My mistake for not catching this earlier but it looks like the meeting that you are referencing hasn’t started yet. Is that correct? It’s important to note that the Dashboard APIs will return this response if the meeting has not been started yet. Are you able to get the expected response from another meeting that has been started?

Thanks,
Max

I will try that. The meeting has to be “live”? There is no way to get a list of registrations for upcoming meetings?. I know we can get participants, but the info that I need is on the registrant.

"email": "somemeail@emailprovider.com",
      "first_name": "Tim",
      "last_name": "S.",
      "id": "zjkfsdfjdfhg",
      "address": "11111 Awesome St",
      "city": "Paris",
      "country": "France",
      "zip": "11000",
      "state": "Ile-de-France",

Thank you and Happy New Year!

Hey @dbailey,

Thank you for your question and my apologies for not providing this information earlier. If you would like to get a list of registrants for a scheduled meeting, you can use the List Meeting Registrants API.

I hope that helps! Happy New Year!

Thanks,
Max

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