POST /devices/{serial_number}/uninstall
Uninstall a device at a location
This endpoint allows the removal of a specific DTM device from a designated location.
Uninstall a device at a location
Authorizations
Path parameters
serial_numberstringRequired
serial_number
Body
location_idstringRequiredExample:
loc_xxxxx
uninstalled_atstringOptionalExample:
2022-01-01T00:00:00Z
Responses
200
Successful operation
application/json
400
Invalid parameters
404
Device not found
post
POST /dtm-api/v1/devices/{serial_number}/uninstall HTTP/1.1
Host: api.getdor.com
Authorization: Basic username:password
Content-Type: application/json
Accept: */*
Content-Length: 67
{
"location_id": "loc_xxxxx",
"uninstalled_at": "2022-01-01T00:00:00Z"
}
{
"data": {
"created_at": "2021-10-10T00:00:00Z",
"deleted_at": "2021-10-10T00:00:00Z",
"device": {
"serial_number": "AA000000",
"device_type_name": "DTM",
"firmware_version_name": "1.0.0",
"last_checkin_at": "2021-10-10T00:00:00Z"
},
"location": {
"name": "AA000000",
"id": "loc_xxxxx",
"address": {
"address_1": "1234 Demo Street",
"address_2": "text",
"city": "San Francisco",
"administrative_area": "CA",
"country": "United States",
"postal_code": 94110
}
}
},
"meta": {}
}
Last updated