POST apiassetoauth/driive/requestvehiclecheckpdf
Request historical vehicle check PDFs
Request Information
URI Parameters
None.
Body Parameters
A VehicleCheckPDFRequest
OAuthVehicleCheckPDFRequest| Name | Description | Type | Additional information |
|---|---|---|---|
| ServiceId |
The service id queried |
unsigned integer |
None. |
| StartDate |
The start date queried |
date |
None. |
| EndDate |
The end date queried |
date |
None. |
Request Formats
application/json, text/json
Sample:
{
"ServiceId": 1,
"StartDate": "2025-11-03T08:48:17.652456+00:00",
"EndDate": "2025-11-03T08:48:17.652456+00:00"
}
application/xml, text/xml
Sample:
<OAuthVehicleCheckPDFRequest xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <ServiceId>1</ServiceId> <StartDate>2025-11-03T08:48:17.652456+00:00</StartDate> <EndDate>2025-11-03T08:48:17.652456+00:00</EndDate> </OAuthVehicleCheckPDFRequest>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
VehicleCheckPDFResponse
VehicleCheckPDFResponse| Name | Description | Type | Additional information |
|---|---|---|---|
| VehicleChecks |
A list of vehicle checks |
Collection of VehicleCheckURL |
None. |
| VehicleCheckCount |
The number of vehicle checks found |
integer |
None. |
Response Formats
application/json, text/json
Sample:
{
"VehicleChecks": [
{
"StartDate": "2025-11-03T08:48:17.652456+00:00",
"EndDate": "2025-11-03T08:48:17.652456+00:00",
"S3URL": "sample string 3",
"Driver": "sample string 4"
},
{
"StartDate": "2025-11-03T08:48:17.652456+00:00",
"EndDate": "2025-11-03T08:48:17.652456+00:00",
"S3URL": "sample string 3",
"Driver": "sample string 4"
}
],
"VehicleCheckCount": 1
}
application/xml, text/xml
Sample:
<VehicleCheckPDFResponse xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<VehicleChecks>
<VehicleCheckURL>
<StartDate>2025-11-03T08:48:17.652456+00:00</StartDate>
<EndDate>2025-11-03T08:48:17.652456+00:00</EndDate>
<S3URL>sample string 3</S3URL>
<Driver>sample string 4</Driver>
</VehicleCheckURL>
<VehicleCheckURL>
<StartDate>2025-11-03T08:48:17.652456+00:00</StartDate>
<EndDate>2025-11-03T08:48:17.652456+00:00</EndDate>
<S3URL>sample string 3</S3URL>
<Driver>sample string 4</Driver>
</VehicleCheckURL>
</VehicleChecks>
<VehicleCheckCount>1</VehicleCheckCount>
</VehicleCheckPDFResponse>