Assigning employee to tracker
API calls for assigning employee ("driver") to a device and reading who is already assigned.
Allows assigning employee ("driver") to a device. Also, read who is on a vehicle now, hardware key and when, where it was assigned.
API actions
API base path: /tracker/employee.
assign
Assigns another employee ("driver") to the tracker.
required sub-user rights: employee_update.required tariff feature: app_fleet.
Parameters
tracker_id
ID of the tracker (aka "object_id"). Tracker must belong to authorized user and not be blocked.
int
123456
new_employee_id
ID of the new employee.
int
12345
Examples
curl -X POST 'https://api.eu.navixy.com/v2/tracker/employee/assign' \
-H 'Content-Type: application/json' \
-d '{"tracker_id": 123456, "new_employee_id": 12345, "hash": "a6aa75587e5c59c32d347da438505fc3"}'https://api.eu.navixy.com/v2/tracker/employee/assign?tracker_id=123456&new_employee_id=12345&hash=a6aa75587e5c59c32d347da438505fc3Response
{
"success": true
}Errors
201 – Not found in the database - if there is no tracker or employee with such ID belonging to authorized user.
208 – Device blocked - if tracker exists but was blocked due to tariff restrictions or some other reason.
263 – No change needed, old and new values are the same - if new employee matches a currently assigned employee.
read
Requests to read the current employee (driver) assigned to tracker, and when it was assigned.
Parameters
tracker_id
ID of the tracker (aka "object_id"). Tracker must belong to authorized user and not be blocked.
int
123456
Examples
Response
current- current employee (driver) info, standard employee object, can benull.last_change- information about the employee's last assignment, can benull.old_employee_id- deprecated. Alwaysnull.new_employee_id- ID of an employee assigned to the tracker. Can benull.location- an address where it was. Can benull.lat- latitude.lng- longitude.address- an address where it was. Can benull.
origin-supervisor(if the assignment was made through the API) ortracker(if the assignment was made through the hardware/driver key).hardware_key- hardware key used to change employee.
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.
Last updated
Was this helpful?