Question
rest api to add zoom room to a meeting
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?
