Not able to fetch the list of participants for a particular meeting ID

Hi,

I am trying to fetch the list of participants in particular meeting. In the API , it shows the below error & in the dashboard I am able to see the participants data.

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

Which Endpoint/s?
https://api.zoom.us/v2/metrics/meetings/{meetingId}/participants

How To Reproduce (If applicable)
Steps to reproduce the behavior:

  1. 
    

querystring = {“to”:“2020-03-02”,“from”:“2020-02-28”,“page_size”:“30”,“type”:“past”}

2. Error:
{
  "code": 3001,
  "message": "This meeting's details info is not available or ID is not valid."
}

Please get back to me if you need further details.

Hey @priyanka.thummala,

What are you passing in for the meetingID?

Thanks,
Tommy

Meeting ID: 689836972

url = “https://api.zoom.us/v2/metrics/meetings/689836972/participants

Hey @priyanka.thummala,

Are you using the correct query param? By default it queries for live meetings, and if there are none you will get that error.

Please try ?type=past if you are trying to get a past meeting.

Thanks,
Tommy

1 Like

Hi Tommy,

If you observe the query string , I used the “type”:“past” itself and could not fetch the participant details.

Thanks,
Priyanka.

Hey @priyanka.thummala,

Are you passing that into the url or as a request body? Your code snippet appears to be JSON, but maybe the framework you are using converts it to query param?

Thanks,
Tommy