List upcoming meetings returns all scheduled meetings

Using this template helps us debug your issues more effectively :slight_smile:

Description
I’m trying to get all upcoming meetings with this : https://marketplace.zoom.us/docs/api-reference/zoom-api/meetings/meetings. But even though i’ve set ‘type’ to ‘upcoming’ it returns meetings that are up to one month old.

Which App Type (OAuth / Chatbot / JWT / Webhook)?
JWT

Which Endpoint/s?
https://api.zoom.us/v2/users/{userId}/meetings

How To Reproduce (If applicable)
my request data:

{
"type": "scheduled",
"page_size": 300,
"page_number": "1"
}

Hi @fff , these parameters should be passed in as query parameters, rather than in the body of a request. I’d suggest sending a GET request to this path:

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

^ that will return all scheduled meetings.

1 Like

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