Navixy Raw IoT Data API
Overview of Navixy Raw IoT Data API.
Last updated
Was this helpful?
Was this helpful?
curl -X 'POST' \
'https://api.eu.navixy.com/dwh/v1/tracker/raw_data/get_inputs' \
-H 'accept: text/csv' \
-H 'Content-Type: application/json' \
-H 'Authorization: NVX 8a41497ed8e77fa68b9c4a9420971fdb' \
-d '{"tracker_id": 123456'}'curl -X 'POST' \
'https://api.eu.navixy.com/dwh/v1/tracker/raw_data/get_inputs' \
-H 'accept: text/csv' \
-H 'Content-Type: application/json' \
-d '{"hash": "6dc7d304dec4434f4c4202ec42817f83","tracker_id": 123456}'{
"type": "errors/default/bad-request",
"title": "Bad Request",
"status": 400,
"detail": "id: must be greater than or equal to 1"
}curl -X 'POST' \
'https://api.eu.navixy.com/dwh/v1/tracker/raw_data/get_inputs' \
-H 'Content-Type: application/json' \
-d '{
"hash": "6dc7d304dec4434f4c4202ec42817f83",
"tracker_id": 123456
}'curl -X 'POST' \
'https://api.eu.navixy.com/dwh/v1/tracker/raw_data/read' \
-H 'accept: text/csv' \
-H 'Content-Type: application/json' \
-d '{
"hash": "6dc7d304dec4434f4c4202ec42817f83",
"tracker_id": "123456",
"from": "2023-11-30T07:13:00.000Z",
"to": "2023-11-30T07:15:00.000Z",
"columns": [
"lat",
"lng",
"speed",
"inputs.ble_lls_level_1",
"inputs.hw_mileage",
"discrete_inputs.*"
]
}'