Skip to content
This repository has been archived by the owner on Jun 27, 2024. It is now read-only.

Latest commit

 

History

History
35 lines (25 loc) · 1.05 KB

File metadata and controls

35 lines (25 loc) · 1.05 KB

Delete Room

Delete a room from the workspace.

HTTP MethodURLRequires Auth
POST/api/v1/rooms.deleteyes

Body Parameters

KeyExample ValueDescription
roomId*ByehQjC44FwMeiLbXThe room ID.

Example Call

curl -L -X POST 'http://localhost:3000/api/v1/rooms.delete' \
-H 'x-auth-token: Bln_vcvvbA9a9j2_GV0QdV52d-xoyLkNoOyPcD4cars' \
-H 'x-user-id: 5fRTXMt7DMJbpPJfh' \
-H 'Content-Type: application/json' \
-d '{
    "roomId":"64adb09baa5ad4273bfc0cbf"
}'

Example Response

{
  "success": true
}

Change Log

Version Description
5.4.0 Added