We are encountering an issue with Zoom meetings where participants can rejoin using the same meeting link, even after I’ve explicitly ended the meeting. This creates multiple sessions under a single Meeting ID, leading to challenges with reporting and data accuracy.
When I retrieve participant data via the Zoom API, it only provides details for the most recent session. This makes it difficult to get a comprehensive list of all participants across all sessions under the same Meeting ID.
Current API Requests in Use:
To retrieve participant details, I’m using the following API requests:
curl --request GET \
--url https://api.zoom.us/v2/report/webinars/ABCDE12345/participants \
--header 'Authorization: Bearer YOUR_SECRET_TOKEN'
curl --request GET \
--url https://api.zoom.us/v2/report/meetings/__MEETINGID__/participants \
--header 'Authorization: Bearer YOUR_SECRET_TOKEN'
These calls work for individual sessions but do not consolidate participant data across multiple sessions.
Issues:
- Multiple Sessions Creation: Participants can rejoin a meeting after it’s ended, creating multiple sessions under the same Meeting ID.
- Reporting Accuracy: When I retrieve the participant report, it only reflects the participants of the most recent session, ignoring data from earlier sessions under the same Meeting ID.
Requirements:
To resolve these issues, I’m looking for:
- A way to prevent participants from rejoining a meeting after it has ended. If participants couldn’t join after the meeting ends, it would ensure there’s only one session per Meeting ID and simplify reporting.
- Alternatively, an API endpoint or method to retrieve a consolidated participant report that includes all sessions under the same Meeting ID.
Questions:
- Is there a setting or configuration to block participants from rejoining a meeting after it’s explicitly ended?
- If this behavior cannot be enforced, is there an API-based solution or workaround to aggregate participant data across multiple sessions under the same Meeting ID?
Your assistance with addressing these issues would be greatly appreciated!