We are trying to develop an application to list participants for a particular Zoom meeting. We are using the get past meeting participants endpoint (https://marketplace.zoom.us/docs/api-reference/zoom-api/meetings/pastmeetingparticipants). This requires meeting UUIDs which we are getting from the list meetings endpoints
When using the UUIDs received from the list meetings endpoints, the get meeting participants endpoints keep giving me a code 3001 with a message saying that meeting does not exist.
Example request to list meetings: GET /users/me/meetings
Example response:
Example request to list this meeting’s participants (WITHOUT double url encoding for uuid): GET
Example request to list this meeting’s participants (WITH double url encoding for uuid): GET
We have an account level Oauth type app.
As far as I am aware, the double url encode shouldn’t be needed in this case as it doesn’t begin with a '/'or contain ‘//’ in it. However, trying it both ways seems to produce the same error which is what confused me.
Any help is appreciated!!