Description
I used to be able to paginate through all meeting registrants using next_page_token
, but for some reason next_page_token
is no longer included in the response so I’m only getting the first page of registrants. It stopped working sometime in the past few days.
Error
next_page_token
not included in List Meeting Registrants response.
Which App Type (OAuth / Chatbot / JWT / Webhook)?
JWT
Which Endpoint/s?
/meetings/{meetingId}/registrants
How To Reproduce (If applicable)
Here is the request (copied from Postman):
curl --location --request GET 'https://api.zoom.us/v2/meetings/98222547249/registrants?occurrence_id=&status=approved&page_size=30&page_number=1&next_page_token=' \
--header 'Authorization: Bearer redacted'
And the response:
{
"page_count": 12,
"page_number": 1,
"page_size": 30,
"total_records": 338,
"registrants": [removed for brevity]
}
As you can see there isn’t next_page_token
even though there are 12 pages. This seems like a bug as the documentation still says it should be part of the response.