v52

OpenAPI 3.1.0raw.githubusercontent.com2026-07-311,1941,9384.1 MB
Rooms

View a room.

get/rooms/{room_id}

Path parameters

room_idstring uuid required
Example:0ccc7b54-4df3-4bca-a65a-3da1ecc777f0

The unique identifier of a room.

Query parameters

include_sessionsboolean
Example:true

To decide if room sessions should be included in the response.

Response

Get room response.

Example response

{
  "data": {
    "active_session_id": "7b61621f-62e0-4aad-ab11-9fd19e272e74",
    "created_at": "2021-04-16T09:46:20.954863Z",
    "enable_recording": true,
    "id": "7b61621f-62e0-4aad-ab11-9fd19e272e73",
    "max_participants": 50,
    "record_type": "room",
    "sessions": [
      {
        "active": true,
        "created_at": "2021-04-16T09:46:20.954863Z",
        "id": "7b61621f-62e0-4aad-ab11-9fd19e272e74",
        "participants": [],
        "record_type": "room_session",
        "room_id": "7b61621f-62e0-4aad-ab11-9fd19e272e73",
        "updated_at": "2021-04-16T10:24:55.962200Z"
      }
    ],
    "unique_name": "My Room",
    "updated_at": "2021-04-16T10:24:55.962200Z",
    "webhook_event_failover_url": "https://failover.example.com",
    "webhook_event_url": "https://www.example.com",
    "webhook_timeout_secs": 25
  }
}