Read Room by ID
๐งพ Read Room by ID
Endpoint: GET /api/v3/rooms/{roomId}
Auth Required: โ Yes (Bearer Token)
๐ Description
Retrieves detailed information about a specific room based on its unique ID. Commonly used when displaying room profiles, managing room scheduling, or editing room configurations.
๐ข URL Parameters
Parameter | Type | Required | Description |
---|---|---|---|
roomId |
integer/string | โ Yes | Unique identifier of the room. |
๐ Query Parameters
Parameter | Type | Required | Description |
---|---|---|---|
languageId |
integer | No | Language ID for localized room fields. |
๐ค Request Example
GET https://api.briefingedge.com/api/v3/rooms/42?languageId=1 Authorization: Bearer <token>
โ Success Response (200 OK)
Returns a Room
object with full room details.
Example:
{ "RoomID": 42, "Name": "Executive Briefing Room A", "Capacity": 20, "IsActive": true, "Location": "2nd Floor, East Wing" }
โ Error Responses
Code | Message | Description |
---|---|---|
401 | Unauthorized | Missing or invalid bearer token. |
404 | Not Found | No room found with the specified ID. |
500 | Internal Server Error | Unexpected server-side failure. |