API calling work flow issue

In API documentation API calling workflow is not clear And I am not able to use these APIs

Hey @rajendra, what specifically are you having trouble with?

The OAuth flow?

Thanks,
Tommy

Hi @tommy,
when I try to call Zoom APIs Then I could not find way of call APIs with JWT
I want to create meetings with JWT Auth.
Getting the below error.
{
“code”: 200,
“message”: “No privilege.”
}

Hey @rajendra,

Can you post your request url and auth headers so I can debug?

Here is how to create a meeting with JWT:

POST https://api.zoom.us/v2/users/{userId}/meetings

Headers:

{
   "Authorization": "Bearer JWTTOKENHERE"
}

Body:

{
  "topic": "My Meeting",
  "type": 2,
  "start_time": "2019-10-03T00:00:00Z",
  "duration": 30,
}

Thanks,
Tommy