Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Description of change
Changing report webinars and participants to pull each UUID rather than ID; this means they're a child of webinars
Per the documentation, if you pass webinar_id you get only the last result per webinar, but if you pass UUID, you get the results for the UUID:
https://developers.zoom.us/docs/api/rest/reference/zoom-api/methods/#operation/reportWebinarDetails
The webinar's ID or universally unique ID (UUID).If you provide a webinar ID, the API will return a response for the latest webinar instance.If you provide a webinar UUID that begins with a / character or contains the // characters, you must double encode the webinar UUID before making an API request.
webinarId
string
The webinar's ID or universally unique ID (UUID).
If you provide a webinar ID, the API will return a response for the latest webinar instance.
If you provide a webinar UUID that begins with a / character or contains the // characters, you must double encode the webinar UUID before making an API request.
Add new fields to participants:
https://developers.zoom.us/docs/api/rest/reference/zoom-api/methods/#operation/reportMeetingParticipants
Manual QA steps
I built locally and ran. before, I got a total of 6 results for report_webinars, all grouped together, all with different ids.
After, I got a record for report_webinars after every webinar, closer to 50 results
Risks
Rollback steps