MyEZToll
GET/api/partner/v1/cars/{carId}/gps/track

Car track

The raw fixes one car produced over a period.

Every fix inside the window, oldest first — the track you draw on a map. The period defaults to the last 24 hours and is capped at 31 days, because raw positions are purged on a rolling 30-day retention. Vehicle identity is carried once by the page, not repeated on every point.

Authorization

X-Api-Key header

Send your partner key on every request. The key is bound to exactly one owner account.

Path parameters

carIdstringpathrequired

Query parameters

fromstringquery

Start of the window (UTC, inclusive). Defaults to 30 days before to.

tostringquery

End of the window (UTC, exclusive). Defaults to now.

pageintegerquery

1-based page number.

Default: 1
pageSizeintegerquery

Rows per page. Capped at 1000.

Default: 100

Response

200 · application/json
successbooleanrequired
dataobject

The shape of data on every list endpoint. items is added by each list's own schema.

pageintegerrequired

1-based page number you asked for.

pageSizeintegerrequired
totalintegerrequired

Rows in the whole filtered set

hasMorebooleanrequired

Another page is waiting — request page+1.

carIdstring
externalCarIdstringnullable
bookingIdstringnullable

Set on the booking-scoped read.

externalBookingIdstringnullable
plateNumberstringnullable
plateStatestringnullable
trackerIdstring <uuid>
imeistringnullable
sourcestringnullable
sourceNamestringnullable
fromUtcstring <date-time>
toUtcstring <date-time>
itemsGpsTrackPoint[]
errorstringnullable

Status codes

200One page of the track.
400Validation error.
401Missing, unknown or revoked API key.
404The resource does not exist under this owner.