event.drive.state

The event.drive.state event provides real‑time information about the asset’s driving condition, including motion state, fuel levels, mileage, and geographic position. This data supports operational monitoring, trip analysis, and fleet performance insights.

Payload JSON

{
   "eventSubscriptionId":"517db07f-6e95-475e-8cc0-a371f9deed2b",
   "eventType":"event.drive.state",
   "eventId":"c37f8ac9-8206-4f95-afd1-74e442d09c07",
   "assetId":"2412ba2f-4499-4933-a9ce-69f6a38f44ee",
   "unitId":"traxee:358014094033866",
   "eventData":{
      "registeredOn":"2021-03-26T22:20:59Z",
      "fuel":37,
      "mileage":62318,
      "latitude":51.1655,
      "longitude":3.5117,
      "state":"rolling"
   }
}

Field level Description

FieldTypeDescription
eventSubscriptionIdString (UUID)A unique identifier representing the subscription through which this event was delivered. It ensures traceability between the event and the organization's registered RMS subscription.
eventTypeStringIndicates the type of event transmitted. Here, event.drive.state signifies a driving‑state update from the asset.
eventIdString (UUID)A globally unique identifier assigned to this specific event instance. Useful for event deduplication, tracking, and audit logging.
assetIdString (UUID)Identifies the physical asset (e.g., vehicle, trailer, equipment) associated with this event. Used to correlate telemetry with a specific asset in fleet management systems.
unitIdStringA unique identifier of the telematics device generating the event. It often includes a namespace (e.g., traxee:) followed by the device's serial or IMEI-like identifier.
eventDataObjectContains all driving‑state‑related telemetry recorded at the time of the event.
registeredOnDateTime (ISO 8601 timestamp, UTC)Timestamp indicating when the driving‑state data was recorded by the telematics unit. Expressed in UTC to maintain consistent interpretation across systems.
fuelNumber (percentage or system‑specific fuel unit)Represents the current fuel level of the asset at the time of the event. Enables monitoring of fuel consumption, trip readiness, and refueling planning.
mileageNumber (kilometers)Indicates the total cumulative distance traveled by the asset up to the event timestamp. Supports maintenance scheduling, utilization analysis, and trip reporting.
latitudeNumber (decimal degrees)The asset's recorded geographic latitude at the time of the event, using the WGS‑84 coordinate standard.
longitudeNumber (decimal degrees)The asset's recorded geographic longitude at the event timestamp, also in WGS‑84 format.
stateStringDescribes the driving condition of the asset at the time of the event. Example values may include:
rolling — The asset is started moving, but unsure if this represents a real drive (maybe just re-parking the asset)
driving — Confirmed motion of the asset.
stopping — The asset came to a standstill, but unsure if this represents a real standstill (maybe just stopping at the traffic).
standstill — Confirmed stop of the asset.
unknown — The state is unknown of the asset.