LED
API calls to get and update LED state of the tracker.
API calls to get and update LED state of the tracker. LED switch should be available for the device.
API actions
API base path: /tracker/led.
read
Gets LED status for the specified tracker.
Parameters
tracker_id
ID of the tracker (aka "object_id"). Tracker must belong to authorized user and not be blocked.
int
999199
Examples
curl -X POST 'https://api.eu.navixy.com/v2/tracker/led/read' \
-H 'Content-Type: application/json' \
-d '{"hash": "a6aa75587e5c59c32d347da438505fc3", "tracker_id": 265489}'https://api.eu.navixy.com/v2/tracker/led/read?hash=a6aa75587e5c59c32d347da438505fc3&tracker_id=265489Response
{
"success": true,
"value": true
}value- boolean. LED status,true- ON,false- OFF.
Errors
201 – Not found in the database - if there is no tracker with such ID belonging to authorized user.
208 – Device blocked - if tracker exists but was blocked due to tariff restrictions or some other reason.
214 – Requested operation or parameters are not supported by the device.
update
Switches LED state for a specified tracker.
Parameters
tracker_id
ID of the tracker (aka "object_id"). Tracker must belong to authorized user and not be blocked.
int
999199
value
The new LED state, true – ON, false – OFF.
boolean
true/false
Examples
curl -X POST 'https://api.eu.navixy.com/v2/tracker/led/update' \
-H 'Content-Type: application/json' \
-d '{"hash": "a6aa75587e5c59c32d347da438505fc3", "tracker_id": 265489, "value": true}'https://api.eu.navixy.com/v2/tracker/led/update?hash=a6aa75587e5c59c32d347da438505fc3&tracker_id=265489&value=trueResponse
{
"success": true
}Errors
201 – Not found in the database - if there is no tracker with such ID belonging to authorized user.
208 – Device blocked - if tracker exists but was blocked due to tariff restrictions or some other reason.
214 – Requested operation or parameters are not supported by the device.
Last updated
Was this helpful?