List of participants meeting

hi! I try to get a list of participants about some meeting. I read the documentation. But I don’t know in which part put the path parameter. I used this link to guide me. Zoom Meeting API

And this is my code:

token=
url = “https://api.zoom.us/v2/report/meetings/:meetingId/participants

querystring = {“include_fields”: “registrant_id”,
“page_number”:“1”,“page_size”:“300”,
“from”: “2022-11-01”, “to”: “2022-11-09”,
“type”:“past”}

headers = {“authorization”: “Bearer” + token}

response = requests.request(“GET”, url, headers=headers, params=querystring)
data= response.json()

xx I have this error:

{‘code’: 300, ‘message’: ‘Can not access webinar info, 82569007926’}

Hi @gabrielahuar,

This looks like it’s a webinar, can you try using this endpoint to list the webinar participants?

Let me know if this helps!

Thank you! @rarev

you helped me a lot.

A doubt. When I want to go from one date to another. How could I call it? Because I was putting the dates in the parameter but it gives me the participants of the last webinar but not of the previous ones.

Hey @gabrielahuar

That endpoint is only for a specific webinar, which is why you pass in the webinar ID, if you wanted participants for another webinar, you’d need to pass the ID, this doesn’t take any date parameters.