rest api to add zoom room to a meeting | Community
Skip to main content
Newcomer
March 10, 2025
Question

rest api to add zoom room to a meeting

  • March 10, 2025
  • 0 replies
  • 0 views

I am trying to add zoom room to an existing meeting. Trying to use:

POST https://api.zoom.us/v2/rooms/{room_id}/meetings

{
"jsonrpc": "2.0",
"method": "join",
"params": {
"meeting_number": {meeting_number},
"password": "{password}",
"force_accept": true
}
}
 
With Bearer Auth and access token that I am using for other rest apis.
 
However I am getting this error:
 
"message": "This API does not support oAuth2 for authorization."
 
Is there a different API I should be using?