I’m currently using the following Zoom API endpoints to retrieve meeting information:
GET /report/meetings/:meetingId – to get meeting details
GET /report/meetings/:meetingId/participants?page_size=30&include_fields=registrant_id – to get meeting participants
These work well when I already have the meeting ID.
However, I’m looking for a way to retrieve past meeting details and participant lists by specifying a date (e.g., fetch all meetings that occurred on a specific date, then retrieve participant details from those meetings on a specific date).
Is there any Zoom API endpoint that supports querying past meetings and participants based on a specific date range or date?
However, the response doesn’t include important fields like meeting start time, end time, participants count, and total minutes, which are available in the Get Meeting Detail Reports endpoint.
Additionally, my requirement is to first retrieve the meeting details for a specific date. Then, using the meeting ID from that response and the same date, I need to fetch the corresponding participant details. This way, I can obtain both meeting and participant information filtered by the specified date.