Api's to join a meeting

I am trying to consume one api to join a zoom meeting but i am not getting any proper api’s to join a meetings.i got one api but this api required room id and i am unable to find out room id for my zoom meetings.i am hitting https://api.zoom.us/v2/rooms/zrlist api to get meeting info like room id but i am not getting.
i got below api to join a meeting but it is not working for me.
https://api.zoom.us/v2/rooms/{room id}/meetings
Please let me know the approach.

Hey @prem.srivastava,

To confirm, are you trying to join a meeting from the Zoom Rooms Client?

If so what is not working, can you provide more details and the error?

Thanks,
Tommy

Hey Tommy,

I am using that URL
https://api.zoom.us/v2/rooms/{roomId}/meetings to join meetings. I am passing meeting id in the place of room id but it is saying room not exist. I got another URL to get room list by using that
URL https://api.zoom.us/v2/rooms/zrlist
but i am not able to get room list.

Is there any another API’s to join a meeting.

Thanks,

Prem Shankar Srivastava

Hey @prem.srivastava,

To join a meeting from the Zoom Rooms client, you cannot pass in the meetingID as the roomID.

You must pass the meetingID as the meeting_number in the request body object.

Request Body Example:

{
  "jsonrpc": "2.0",
  "method": "join",
  "params": {
    "meeting_number": 2011092323,
    "password": "Aa123",
    "force_accept": false,
    "callback_url": "https://api.test.zoom.us/callback?token=123"
  }
}

Can you confirm you have a list of Zoom Rooms here.

To join a meeting (not with Zoom Room) use the join_url from the response of the List Meetings, or Create Meeting endpoints.

You can also join a meeting via our SDKs.

Let me know if this helps!

Thanks,
Tommy

Hey @Tommy thanks i can use join_url to join a meeting.

1 Like

Happy to help! :slight_smile:

Thanks,
Tommy