Delete Room by ID

๐Ÿงพ Delete Room by ID

Endpoint: DELETE /api/v3/rooms/{roomId}

Auth Required: โœ… Yes (Bearer Token)


๐Ÿ“ Description

Deletes a specific room by its unique ID. This action is irreversible and should only be used for rooms that are no longer in use or needed in the system.


๐Ÿ”ข URL Parameters

Parameter Type Required Description
roomId integer/string โœ… Yes Unique identifier of the room.

๐Ÿ” Query Parameters

None.


๐Ÿ“ค Request Example

DELETE https://api.briefingedge.com/api/v3/rooms/42 Authorization: Bearer <token>  

โœ… Success Response (204 No Content)

Indicates the room was successfully deleted. No response body is returned.


โŒ 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.