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. |