Last updated 1 year ago
This endpoint allows the removal of a specific DTM device from a designated location.
Uninstall a device at a location
serial_number
"loc_xxxxx"
"2022-01-01T00:00:00Z"
Successful operation
const response = await fetch('https://api.getdor.com/dtm-api/v1/devices/{serial_number}/uninstall', { method: 'POST', headers: { "Authorization": "basic <token>", "Content-Type": "application/json" }, body: JSON.stringify({ "location_id": "loc_xxxxx" }), }); const data = await response.json();
{ "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 } } } }