Download all meeting participants qos data in one go

Description
I want to download meeting participants qos data via Zoom API. Is there any python script to do it automatically?

Error
I am not able to download all meeting participants qos data using MeetingID and UUID. I am able to download only 10 at a time and I get a token in response. I don’t know how to manage tokens and download all the data in one go in a python script.

Which App Type (OAuth / Chatbot / JWT / Webhook)?
I am using JWT token.

Hey @ashwaths99,

Happy to help out however I can! While we don’t have a sample script for this, you should be able to use our GET Meeting Participants QOS endpoint (which it sounds like you’re already doing).

In regards to paging through results, when you send your first request, it should look something like this:
https://api.zoom.us/v2/metrics/meetings/{meetingId}/participants/{participantId}/qos?page_size=10

In the response, a next_page_token will be returned. To get the next 10 results, you will make a second request and pass in the token—it will look something like this:
https://api.zoom.us/v2/metrics/meetings/{meetingId}/participants/{participantId}/qos?page_size=10&next_page_token={token}

Let me know if this helps!

Thanks,
Will

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.