Skip to main content
GET
/
v1
/
vehicles
/
{vehicle_id}
/
maintenance
/
services
Get Vehicle Services
curl --request GET \
  --url https://api.volteras.com/v1/vehicles/{vehicle_id}/maintenance/services \
  --header 'Authorization: Bearer <token>'
{
  "services": [
    {
      "component": "VEHICLE",
      "type": "FULL_SERVICE",
      "kmToNextService": "<string>",
      "dateOfNextServiceAt": "2023-11-07T05:31:56Z",
      "dateOfLastServiceAt": "2023-11-07T05:31:56Z",
      "odometerKmAtLastService": "<string>",
      "status": "PENDING"
    }
  ]
}

Authorizations

Authorization
string
header
required

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

Path Parameters

vehicle_id
string
required

Unique internal identifier for the vehicle.

Response

200 - application/json

Successful Response

Service data for a vehicle and its components

services
VehicleService · object[]
required