Skip to main content
DELETE
/
cabinet
/
admin
/
users
/
{user_id}
/
devices
/
{hwid}
Delete User Device
curl --request DELETE \
  --url https://api.example.com/cabinet/admin/users/{user_id}/devices/{hwid} \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "message": "<string>",
  "deleted_hwid": "<string>"
}

Authorizations

Authorization
string
header
required

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

Path Parameters

user_id
integer
required
hwid
string
required

Response

Successful Response

Response after device deletion.

success
boolean
required
message
string
required
deleted_hwid
string | null