APIs/Connected Vehicle APIVersion 1
APIs/Connected Vehicle APIVersion 1
Tyres
Get tyres status
Endpoint used to get vehicle’s latest tyre status values.
get
https://api.volvocars.com/connected-vehicle/v1/vehicles/{vin}/tyres
Scopes
openid
conve:tyre_status
Headers
Key | Description |
Key accept | Description The mediatype of what should be returned. The valid values are: application/vnd.volvocars.api.connected-vehicle.vehicledata.v1+json |
Key authorization | Description The access token issued by Volvo ID identity system. |
Key vcc-api-key | Description Your application’s VCC API Key. |
Response body
The response’s data node lists the vehicle’s latest window status values.
Field | Description |
Field frontLeft.value | Description Front left tyre’s latest retrieved pressure level. Possible values: LOW, NORMAL, HIGH, LOWSOFT, LOWHARD, NOSENSOR, SYSTEMFAULT. |
Field frontLeft.timestamp | Description Front left tyre’s timestamp in ISO-8601 format when the status value has been last retrieved from the vehicle. |
Field frontRight.value | Description Front right tyre’s latest retrieved pressure level. Possible values: LOW, NORMAL, HIGH, LOWSOFT, LOWHARD, NOSENSOR, SYSTEMFAULT. |
Field frontRight.timestamp | Description Front right tyre’s timestamp in ISO-8601 format when the status value has been last retrieved from the vehicle. |
Field rearLeft.value | Description Rear left tyre’s latest retrieved pressure level. Possible values: LOW, NORMAL, HIGH, LOWSOFT, LOWHARD, NOSENSOR, SYSTEMFAULT. |
Field rearLeft.timestamp | Description Rear left tyre’s timestamp in ISO-8601 format when the status value has been last retrieved from the vehicle. |
Field rearRight.value | Description Rear right tyre’s latest retrieved pressure level. Possible values: LOW, NORMAL, HIGH, LOWSOFT, LOWHARD, NOSENSOR, SYSTEMFAULT. |
Field rearRight.timestamp | Description Rear right tyre’s timestamp in ISO-8601 format when the status value has been last retrieved from the vehicle. |
Examples
curl -v -X GET 'https://api.volvocars.com/connected-vehicle/v1/vehicles/{vin}/tyres' \
-H 'accept: application/vnd.volvocars.api.connected-vehicle.vehicledata.v1+json' \
-H 'authorization: Bearer <your-access-token>' \
-H 'vcc-api-key: <your-vcc-api-key>'