Working with Notifications
Obtain a List of History Entries
All Unread Events of a User
curl -X POST 'https://api.eu.navixy.com/v2/history/unread/list' \
-H 'Content-Type: application/json' \
-d '{"hash": "22eac1c27af4be7b9d04da2ce1af111b", "limit": 100, "from": "2020-12-26 00:00:00"}'{
"success": true,
"list": [
{
"id": 1,
"type": "tracker",
"is_read": false,
"message": "Alarm",
"time": "2020-12-31 00:00:00",
"event": "offline",
"tracker_id": 2,
"rule_id": 3,
"track_id": 4,
"location": {
"lat": 50.0,
"lng": 60.0,
"precision": 50
},
"address": "address",
"extra": {
"task_id": null,
"parent_task_id": null,
"counter_id": null,
"service_task_id": null,
"checkin_id": null,
"place_ids": null,
"last_known_location": false,
"tracker_label": "Tracker label",
"emergency": false,
"employee_id": 4563
}
}
]
}Events for Specific Trackers and Time Period
Required Parameters
Optional Parameters
All Events of a User for a Specific Time Period
Required Parameters
Optional Parameters
Last updated
Was this helpful?