POST api/mobile/drivertelemetry

Get driver telemetry

Request Information

URI Parameters

None.

Body Parameters

The DriverTelemetryRequestModel

DriverTelemetryRequestModel
NameDescriptionTypeAdditional information
Token

The token returned after login used for authentication

string

None.

DriverId

The driver id returned after login used for authentication

unsigned integer

None.

StartDate

The start date being queried

date

None.

EndDate

The end date being queried

date

None.

ServiceId

The service id of the telemetry

unsigned integer

None.

Request Formats

application/json, text/json

Sample:
{
  "Token": "sample string 1",
  "DriverId": 2,
  "StartDate": "2025-04-27T15:29:12.8053172+00:00",
  "EndDate": "2025-04-27T15:29:12.8053172+00:00",
  "ServiceId": 5
}

application/xml, text/xml

Sample:
<DriverTelemetryRequestModel xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <Token>sample string 1</Token>
  <DriverId>2</DriverId>
  <StartDate>2025-04-27T15:29:12.8053172+00:00</StartDate>
  <EndDate>2025-04-27T15:29:12.8053172+00:00</EndDate>
  <ServiceId>5</ServiceId>
</DriverTelemetryRequestModel>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

A list of DriverTelemetryResponseModel

Collection of DriverTelemetryResponseModel
NameDescriptionTypeAdditional information
Street

The street

string

None.

Town

The town

string

None.

Postcode

The postcode

string

None.

Country

The country

string

None.

Latitude

The latitude

decimal number

None.

Longitude

The longitude

decimal number

None.

Speed

The speed in mph

decimal number

None.

RoadSpeed

The road speed in mph

integer

None.

Orientation

The orientation in degrees

decimal number

None.

Time

The time the message was sent in UTC

date

None.

MessageType

The message type

event_t

None.

Response Formats

application/json, text/json

Sample:

Sample not available.