GET api/v{version}/Todo/GetVehicleDates?key={key}
get the voertuig_datums table to look at the upcoming or last todo dates
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| key |
The API key |
string |
Required |
| version | string |
None. |
Body Parameters
None.
Response Information
Resource Description
Collection of VehicleDatesOutDTO| Name | Description | Type | Additional information |
|---|---|---|---|
| AssetID | integer |
None. |
|
| LastDate | date |
None. |
|
| LastMileage | integer |
None. |
|
| LastPTO | decimal number |
None. |
|
| LastTodo | string |
None. |
|
| NextDate | date |
None. |
|
| NextMileage | integer |
None. |
|
| NextPTO | decimal number |
None. |
|
| PlanningscodeID | integer |
None. |
|
| VehicleDateID | integer |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"AssetID": 1,
"LastDate": "2025-12-19T17:16:33.3115966+01:00",
"LastMileage": 1,
"LastPTO": 1.0,
"LastTodo": "sample string 2",
"NextDate": "2025-12-19T17:16:33.3115966+01:00",
"NextMileage": 1,
"NextPTO": 1.0,
"PlanningscodeID": 3,
"VehicleDateID": 4
},
{
"AssetID": 1,
"LastDate": "2025-12-19T17:16:33.3115966+01:00",
"LastMileage": 1,
"LastPTO": 1.0,
"LastTodo": "sample string 2",
"NextDate": "2025-12-19T17:16:33.3115966+01:00",
"NextMileage": 1,
"NextPTO": 1.0,
"PlanningscodeID": 3,
"VehicleDateID": 4
}
]