Skip to content

Event type

Contains list method to get event types available to user with localized descriptions.


API actions

API path: /history/type.

list

Returns available history event types with localized descriptions.

parameters

name description type
locale Locale code to set language of descriptions. enum
only_tracker_events Optional. Default is true. Will return only tracker type events if true. boolean

example

curl -X POST 'https://api.navixy.com/v2/history/type/list' \
    -H 'Content-Type: application/json' \
    -d '{"hash": "22eac1c27af4be7b9d04da2ce1af111b", "locale": "En-en"}'

response

{
    "success": true, 
    "list": [{
         "type": "alarmcontrol",
         "description": "Car alarm" 
    }]
}
  • type - string. History event type.
  • description - string. Localized description.

errors


Last update: December 26, 2022