device
Get a single journey for a device along with its events. The events array is paginated via pageSize / pageNum; use journey.has_more to detect additional pages.
get/v1/projects/{projectOrProductUID}/devices/{deviceUID}/journeys/{journeyID}
Path parameters
projectOrProductUIDstring required
deviceUIDstring required
journeyIDinteger required
Identifier of the journey, taken from the numeric journey field in the event body (a Unix timestamp marking the start of the journey).
Query parameters
pageSizeinteger
pageNuminteger
Response
Successful operation
Example response
{
"journey": {
"events": [
{
"bars": 2,
"best_location_when": 1652709545,
"moved": 7,
"rsrp": -91,
"rsrq": -13,
"rssi": -72,
"sinr": 18,
"tower_when": 1669667691,
"tri_points": 6,
"tri_when": 1652709545,
"updates": 1,
"when": 1656010061,
"when_ms": 1656010061123,
"where_when": 1652709545
}
]
}
}