Zoom Meetings API

Dear Dev-Team,

I am currently using the Meetings API: " /users/{userId}/meetings" to get my meeting.
When i make this request i don’t get the page_size and page_number any more.
Are there some changes?

Instead of this parameters i recieve next_page_token.
I dont know how to use this token to get my Meetings from the second Page.

I hope someone can help me to get my meetings from the rest pages.

best regards
Marvin

Hey @Marv,

You get the next_page_token from each response, and can use the next page token as a query param:

https://api.zoom.us/v2/users/{userId}/meetings?next_page_token={next_page_token}

Does that make sense? :slight_smile:

Thanks,
Tommy