Skip to main content
GET
/
customer
/
{customerId}
/
tracking
/
history
/
driver
Driver Tracking History
curl --request GET \
  --url https://api.masternautconnect.com/connect-webservices/services/public/v1/customer/{customerId}/tracking/history/driver \
  --header 'Authorization: Bearer <token>'

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

customerId
string
required

Query Parameters

driverId
string
required

Identifier (alphanumeric) of a driver.

startDate
string<date-time>
required

Start date of tracking history.
Only include journeys that started on or after this date, in UTC, in format of YYYY-MM-DDThh:mm:ss.

endDate
string<date-time>
required

End date of tracking history.
Only include journeys that started before this date, in UTC, in format of YYYY-MM-DDThh:mm:ss.
Cannot be before startDate and date range cannot exceed 7 days.

pageIndex
integer
default:0

Page number (0-indexed) for paginated results.
Defaults to 0.

Required range: x >= 0
pageSize
integer
default:50

Number of tracking events per page.
Defaults to 50, maximum 200.

Required range: 1 <= x <= 200

Response

Tracking history successfully returned with pagination