GET /uninstalled-devices

GET Uninstalled Devices

This endpoint returns devices that have been added to your account but have not been installed at a Location or Organization yet.

Cross-Organization Endpoint

The Authorization header for this endpoint does not require an ORG_ID value. Authentication should be sent with an empty string value for ORG_ID in the format :API_KEY.

Get user uninstalled devices

get

Get user uninstalled devices

Authorizations
Responses
200
Successful operation
application/json
get
GET /dtm-api/v1/uninstalled-devices HTTP/1.1
Host: api.getdor.com
Authorization: Basic username:password
Accept: */*
{
  "data": [
    {
      "serial_number": "AA000000",
      "device_type_name": "DTM",
      "board_id": "05555ee6f77c888e",
      "firmware_version_name": "1.0.0",
      "last_checkin_at": "2021-10-10T00:00:00Z",
      "update_interval_s": 3000,
      "location": {
        "id": "loc_xxx",
        "name": "Mike's Bikes"
      }
    }
  ],
  "meta": {}
}

Last updated