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.