Description
I would like to be able to programmatically join a meeting hosted by Zoom Room using multiple different camera streams.
According to this doc (https://marketplace.zoom.us/docs/guides/zoom-rooms/zoom-rooms-api) it seems possible, however I am getting an error when testing (see below). I’m using a free trial of Zoom Rooms and a Test Meeting from the Zoom Controllers app, with the latest version of all software. My request looks like the following:
POST https://api.zoom.us/v2/rooms/{room_id replaced with value from list rooms}/meetings
{
“jsonrpc”: “2.0”,
“method”: “join”,
“params”: {
“force_accept”: false
}
}
to start an instant meeting. I also tried starting a test meeting from Zoom Controller and including the meeting_id and password fields in the request, and got the same response, which was:
Error
{
“jsonrpc”: “2.0”,
“error”: {
“code”: 1012,
“message”: “Room not exist.”
}
}
Which App?
Zoom Rooms / Zoom Controller
How To Reproduce (If applicable)
Steps to reproduce the behavior:
- Create an unlicensed zoom room
- Start Zoom Rooms app on Mac.
- Start Zoom Controller app on iPad
- Enter sharing key.
- Start a test meeting.
- Use above api call.
Please let me know if you can what the issue is, or whether what I’m trying to do is even possible.
Thank you!