- I pulled all the users in my organization via GET zoom/v2/users/
- I have created a meeting via POST zoom/v2/users/:userId/meetings (used the user UUID from step 0)
- When I try to retrieve meetings for the same user uuid it returns zero results. GET zoom/v2/users/:userId/meetings
- When I try to retrieve meeting details using the meeting uuid returned from the Post in step 1 I get a 404 with the body of HTML for the 404 page. GET zoom/v2/meetings/:meetingId
My app has the following scopes:
meeting:master
meeting:read:admin
meeting:write:admin
user:master
user:read:admin
user:write:admin
account:master
account:read:admin
I retrieved my bearer token via oauth after these scopes were selected and saved in the marketplace portal.
Any ideas on what I’m doing wrong?
Thanks.
note: zoom/ is short hand for https://api.zoom.us since the forum isn’t letting me add multiple links to my post