This endpoint allows requesting historical location and environmental data based on provided filters. Up to 1 year of history is available, at once maximum 1 month or 1000 events can be fetched. If no time frame provided, the latest event is returned.
Trackonomy External API (1.3.0.0)
External APIs are meant for interacting with Trackonomy Platform. New endpoints will be added regularly. Current APIs enable the following:
- retrieve location and environmental data for assets tracked with Trackonomy tapes.
- decode Trackonomy BLE packets
- send various messages from third party systems for integration purposes
Locations endpoint can be used for the latest event, Historical data endpoint reveals also older data with about 15 minute delay. Note that today authentication is separated for the 2 location data endpoints!
Download OpenAPI description
Overview
URL
Developer Support
Languages
Servers
Mock server
https://docs.trackonomy.com/_mock/external-api/trackonomy-external-api/
PPE API for Locations data
https://ppe.api.trackonomy.com/external/
PPE API for Historical data
https://ppe.mt.trackonomysystems.com/
Locations
This API allows to request location and environmental data for assets tracked with Trackonomy tapes.
available sensor data depends on the exact model of tape used and sensor configuration applied to the specific device. Value -255 indicates sensor unavailability.
location_detailed info can only be returned if Trackonomy indoor network is used by customer at the given location.
Operations
Bodyapplication/jsonrequired
- Mock serverhttps://docs.trackonomy.com/_mock/external-api/trackonomy-external-api/external/messages
- PPE API for Locations datahttps://ppe.api.trackonomy.com/external/external/messages
- PPE API for Historical datahttps://ppe.mt.trackonomysystems.com/external/messages
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X POST \
https://docs.trackonomy.com/_mock/external-api/trackonomy-external-api/external/messages \
-H 'Authorization: Bearer <YOUR_JWT_HERE>' \
-H 'Content-Type: application/json' \
-H 'authorized_groups: Unique customer sub-group UUID' \
-H 'customer_id: Unique customer UUID' \
-H 'message_type: DEVICE_DATA' \
-d '{
"message_type": "MANIFEST_DATA",
"data": {
"asset_barcode": "EXAMPLE BARCODE",
"shipped_date": 1755907016,
"shipment_id": "EXAMPLE SHIPMENT ID",
"container_id": "EXAMPLE CONTAINER ID"
}
}'Response
application/json
{ "message": "Successfully processed the message", "code": 201 }