How to get list of all participants zoom

Not getting all data from zoom api

https://api.zoom.us/v2/report/meetings/meetid/participants

{“page_count”:7,“page_size”:30,“total_records”:188,“next_page_token”:“iFU8Cy5oy7J0SxDka3b94URpl6rWT2G1fn2”,“participants”:[

how to change page size and get total records

Hi @chitransh.bhalla,

To get the full set of results returned by the API, you will need to paginate through the requests using the next_page_token. This will be returned in the API response body when the total count of records exceeds the page_size. You will then take the next_page_token from the first request and append it as a query parameter to the following request:
image

Let me know if this helps. :slight_smile:

Best,
Will

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