v1

latestOpenAPI 3.0.0HERE Documentation License2026-07-142162791.8 MB
Registry

Lists all the devices provisioned by a user

Lists all the devices provisioned by a user project identified by the appId.

get/registry/v2/{appId}/devices

Path parameters

appIdstring required

Project appId of the user's project

Query parameters

pageTokenstring

A token from the previously returned response to retrieve the specified page.

countinteger

The number of items to return per page.

Headers

X-Request-Idstring uuid

ID used for correlating requests within HERE Tracking. Used for logging and error reporting.

Must be a valid UUIDv4.

Response

Success

countinteger

The number of items in the response.

pageTokenstring

A token that can be used to retrieve the next page of the response.

Example response

{
  "count": 2,
  "data": [
    {
      "deviceId": "d34d8c7f-6bd5-496a-adef-7bf2395aa456",
      "timestamp": 1548143359339
    },
    {
      "appId": "jJHUjhytyGJHJFtftgHG",
      "deviceId": "VRDE-40e87f34-59b9-4bd9-827f-f8ff5a8210e8",
      "externalId": "my-device-1",
      "timestamp": 1548143359340
    }
  ],
  "pageToken": "027ffffea253d79fc"
}