Is there an easy way to extract all the raw data from the Zoom API, or do we need to hit the individual endpoints? What I’m doing now is hitting the List Users endpoint to get users, then hitting the List Meetings endpoint per user_id to get all the meetings. Then for each meeting, I’m hitting the List Meeting Participants QOS endpoint by passing in the meeting_id. It works, but it’s extremely slow, and it consumes Heavy / Resource Intensive API calls so was wondering if there’s a more efficient method.
Thanks!