Endpoint:
GET https://integration-api.ram.syniotec.com/analytics/v1/equipment-distance/:dateParams:
date — Expected in YYYY-MM-DD format (e.g., 2025-08-05)
Response
[
{
"id": "dd1a2b3c-d5e6-7f8a-9b0c-1d2e3f4a5b6c",
"date": "2023-08-01T00:00:00.000Z",
"distance": 15.23,
"equipmentId": "e1a2b3c4-d5e6-7f8a-9b0c-1d2e3f4a5b6c",
"equipment": {
"id": "e1a2b3c4-d5e6-7f8a-9b0c-1d2e3f4a5b6c",
"invNumber": "9999999",
"beaconId": "123456789012345"
}
}
]Fields Description
id - Unique identifier for this record.
date - The date of the report, stored in Coordinated Universal Time (UTC).
distance - Total distance travelled on the specified date, expressed in kilometers. May be null when no distance was recorded for the equipment.
equipmentId - Unique identifier of the equipment.
equipment.id - Unique identifier of the equipment (same as equipmentId).
equipment.invNumber - Inventory number of the equipment. May be null when not set.
equipment.beaconId - Identifier of the beacon installed on the equipment (e.g., GPS tracker). May be null when not set.
Example:
curl -X GET "https://integration-api.ram.syniotec.com/analytics/v1/equipment-distance/2025-08-08" \
-H "Accept: application/json" \
-H "Authorization: Bearer YOUR_ACCESS_TOKEN"