Rooms API

Create and manage video rooms.

POST/api/v1/rooms

Create a new room.

{
  "displayName": "My Room",      // optional
  "maxParticipants": 50,         // optional, default 50
  "metadata": {}                 // optional
}
GET/api/v1/rooms

List all rooms for the authenticated tenant.

GET/api/v1/rooms/:roomId

Get details for a specific room.

DELETE/api/v1/rooms/:roomId

End and delete a room.