Tracker events
The event history of one or more trackers over a period.
This operation reads the event history of trackers: everything the Navixy platform recorded about the named devices over a period, including the events its rules raised.
API actions
API base path: /history/tracker.
Return the event history of one or more trackers over a period.
A request with an empty body reports interval as the missing parameter. That is the internal name of the field holding both dates; the public parameters are from and to.
Either a user session hash or an API key, with the "NVX " prefix, for example "NVX 22eac1c27af4be7b9d04da2ce1af111b". Obtain a session hash from the userAuth operation, or create an API key from the API keys operations. A small number of operations accept a session hash only and reject an API key with error code 4; each says so in its description.
IDs of the trackers to return history for. All must belong to the authorized user and must not be blocked.
Start of the period. Include events recorded at or after this date.
2026-08-24 09:00:00End of the period. Include events recorded at or before this date. Must be after from.
2026-08-24 09:00:00Optional. Restrict to these event types. Available types come from history/type/list.
Optional. Defaults to the platform history.max_limit, which dealer/get_ui_config reports. Maximum number of records to return.
Optional. Default true. Order by time ascending, or descending when false.
Optional. Default false. Include only emergency events.
Optional. Default false. Include only unread events.
Optional. Default true. Add the tracker label to the message field.
Optional. Default false. Include tracker file information. Honoured only for a caller holding the video_monitoring right, and ignored otherwise.
Matching history entries
true if request finished successfully.
truetrue when the result was cut short by the platform limit, so more entries match than were returned. There is no total count: use the matching count operation for that.
Bad request. The response body carries the API-level error code in status.code. Validation failures also include an errors array naming each offending parameter.
Error 211: the requested time span is too big. Error 212: the requested period is not available on the current plan. Error 217: one of the given trackers does not exist, is blocked, or lacks the required plan features.
Error response object
POST /v2/history/tracker/list HTTP/1.1
Host: api.eu.navixy.com
Authorization: YOUR_API_KEY
Content-Type: application/json
Accept: */*
Content-Length: 208
{
"trackers": [
1
],
"from": "2026-08-24 09:00:00",
"to": "2026-08-24 09:00:00",
"events": [
"text"
],
"limit": 1,
"ascending": true,
"only_emergency": true,
"only_unread": true,
"add_tracker_label": true,
"add_tracker_files": true
}{
"success": true,
"list": [
{
"id": 1,
"type": "socket",
"is_read": true,
"message": "text",
"time": "text",
"event": "text",
"tracker_id": 1,
"rule_id": null,
"track_id": 1,
"address": null,
"location": {
"lat": 1,
"lng": 1,
"precision": 1,
"address": "text"
},
"assets": [
{
"id": 1,
"type": "vehicle"
}
],
"extra": {
"employee_full_name": "text",
"vehicle_label": "text",
"task_id": null,
"parent_task_id": null,
"counter_id": null,
"service_task_id": null,
"checkin_id": null,
"place_ids": [
1
],
"places_total_count": 1,
"last_known_location": true,
"tracker_label": "text",
"emergency": true,
"zone_ids": [
1
],
"zone_labels": [
"text"
],
"proximity_object_id": 1,
"employee_id": 1,
"sensor_id": 1,
"sensor_name": "text",
"sensor_calculated_value": "text",
"full_message": "text",
"precision": 1,
"command": {
"name": "text",
"param": null,
"response": {
"status": null,
"body": null,
"error": null,
"success": null
}
},
"ANY_ADDITIONAL_PROPERTY": "anything"
}
}
],
"limit_exceeded": true
}Errors
These errors come in addition to the general error codes:
211 - Requested time span is too big.
212 - Requested period is not available on the current plan.
217 - The list contains non-existent entities.
Last updated
Was this helpful?