Skip to main content
DELETE
/
api
/
v1
/
devices
/
{deviceId}
curl -X DELETE https://alfred.black/api/v1/devices/dev_a1b2c3d4e5 \
  -H "Authorization: Bearer alf_your_key_here"
{
  "message": "Device removed"
}
Removes a paired device from your Alfred instance, revoking its access and invalidating any existing tokens.
This endpoint uses deviceId in the URL path (not requestId). This is the identifier of an already-paired device, not a pending request.
deviceId
string
required
The unique identifier of the paired device to remove.
curl -X DELETE https://alfred.black/api/v1/devices/dev_a1b2c3d4e5 \
  -H "Authorization: Bearer alf_your_key_here"
{
  "message": "Device removed"
}
message
string
A status message confirming the device was removed.