POST api/mobile/driverassettelemetry
Get driver telemetry by asset
Request Information
URI Parameters
None.
Body Parameters
The DriverAssetTelemetryRequestModel
DriverAssetTelemetryRequestModelName | Description | Type | Additional 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. |
Request Formats
application/json, text/json
Sample:
{ "Token": "sample string 1", "DriverId": 2, "StartDate": "2025-04-27T15:43:07.0628886+00:00", "EndDate": "2025-04-27T15:43:07.0628886+00:00" }
application/xml, text/xml
Sample:
<DriverAssetTelemetryRequestModel 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:43:07.0628886+00:00</StartDate> <EndDate>2025-04-27T15:43:07.0628886+00:00</EndDate> </DriverAssetTelemetryRequestModel>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
A list of DriverTelemetryResponseModel
DriverAssetTelemetryResponseModelName | Description | Type | Additional information |
---|---|---|---|
Result |
Indicates if the request was successful |
boolean |
None. |
ErrorCode |
Identifies any possible errors |
WebserviceErrorCode |
None. |
AssetTelemetry |
The asset telemetry |
Collection of DriverTelemetryResponseModel |
None. |
Response Formats
application/json, text/json
Sample:
{ "Result": true, "ErrorCode": 0, "AssetTelemetry": null }