Skip to main content
GET
/
api
/
v1
/
fleets
/
{assetProviderCountryCode}
/
{assetProviderCode}
/
{vehicleId}
/
planned-maintenance
Get planned maintenance
curl --request GET \
  --url https://api.smartmove.eu/m2m/api/v1/fleets/{assetProviderCountryCode}/{assetProviderCode}/{vehicleId}/planned-maintenance \
  --header 'Authorization: Bearer <token>'
{
  "plannedToDate": "2023-04-08T00:00:00.000Z",
  "plannedToMileage": 123456
}

Authorizations

Authorization
string
header
required

The access token received from the authorization server in the OAuth 2.0 flow.

Path Parameters

assetProviderCountryCode
string
required

The two-letter country code of the asset provider the vehicles belong to

Required string length: 2
assetProviderCode
string
required

The three-character code of the asset provider the vehicles belong to

Required string length: 3
vehicleId
string
required

The id of the vehicle

Response

The next planned maintenance in the shortened format.

plannedToDate
string<date>
Example:

"2023-04-08T00:00:00.000Z"

plannedToMileage
integer

In kilometers

Example:

123456