DELETE
/
api
/
departments
/
{departmentId}
/
rooms
/
{roomId}
/
desks
/
{deskId}
curl --request DELETE \
  --url http://localhost/api/departments/{departmentId}/rooms/{roomId}/desks/{deskId} \
  --header 'Authorization: Bearer <token>'
This response has no body data.

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

departmentId
string
required
roomId
string
required
deskId
string
required