POST
/
api
/
departments
/
{departmentId}
/
rooms
/
{roomId}
/
desks
/
{deskId}
/
remove-fixed-user
curl --request POST \
  --url http://localhost/api/departments/{departmentId}/rooms/{roomId}/desks/{deskId}/remove-fixed-user \
  --header 'Authorization: Bearer <token>'
{
  "success": true
}

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

Response

200
*/*
Fixed user successfully removed
success
boolean