Missing participant data from API - two reports for same meeting

Description
We send a request to the API to get the participants records, but we only get partial results.
In the Zoom website we see that for the same meeting there are 2 reports for the same meeting ID.
Inside each one there is a different amount of participants.

The API gives us just the last report of the two, so in fact we have missing attendance for some participants, even though the last report is the shortest of the two in terms of duration.

How can this be solved?

Endpoint
https://api.zoom.us/v2/report/meetings/####/participants?page_size=300 (#### represents the meting ID)

Hey @et-dev, thanks for posting and using Zoom!

When using the Get Meeting Detail Reports endpoint, passing in the meeting ID will only return the latest instance of that meeting.

To get data on a specific instance of a meetingID, try passing in the meetingUUID.

Thanks,
Tommy

Thanks @tommy

I have used https://marketplace.zoom.us/docs/api-reference/zoom-api/meetings/pastmeetings to get all the instances of the same meeting ID and for each one called https://marketplace.zoom.us/docs/api-reference/zoom-api/reports/reportmeetingparticipants with its UUID to get participant attendance info.

Problem solved.

1 Like

Awesome! :slight_smile:

Thanks,
Tommy