Skip to content

Get room by ID

Request

Retrieve information about a specific room.

Security
PartnerApiKey and PartnerOAuth
Path
roomIdinteger, (int64)required

Room ID

accountIdinteger, (int64)required

Account identifier

locationIdinteger, (int64)required

Location identifier

curl -i -X GET \
  'https://api-docs.lobbie.com/_mock/openapi/partner/v2/account/{accountId}/location/{locationId}/room/{roomId}' \
  -H 'Authorization: Bearer <YOUR_JWT_HERE>' \
  -H 'x-api-key: YOUR_API_KEY_HERE'

Responses

Room retrieved successfully

Bodyapplication/json
activeboolean

Whether the room is active

Example:true
createdAtstring, (date-time)

Creation timestamp (UTC)

Example:"2025-01-15T14:00:00Z"
idinteger, (int64)

Unique room identifier

Example:12345
locationIdinteger, (int64)

Location ID

Example:111
namestring

Room name

Example:"Exam Room 1"
updatedAtstring, (date-time)

Last update timestamp (UTC)

Example:"2025-01-15T14:00:00Z"
Response
{ "active": true, "createdAt": "2025-01-15T14:00:00Z", "id": 12345, "locationId": 111, "name": "Exam Room 1", "updatedAt": "2025-01-15T14:00:00Z" }