APIs/Energy APIVersion 1
APIs/Energy APIVersion 1

Charging current limit

Get charging current limit

Provides the latest retrieved charging current limit for a specific vehicle. It indicates the maximum current that the vehicle can draw from the charger during a charging session. The charging current limit is represented in amperes (A).

get

https://api.volvocars.com/energy/v1/vehicles/{vin}/recharge-status/charging-current-limit

Scopes

  • openid

  • energy:charging_current_limit

Headers

KeyDescription

Key

accept

Description

The mediatype of what should be returned. The valid values are: application/vnd.volvocars.api.energy.chargingcurrentlimitresponse.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.

All these header values are mandatory. They must exist in every request.

Response body

The response’s data node lists the vehicle’s latest charging current limit in ampere.

FieldDescription

Field

chargingCurrentLimit.value

Description

The latest retrieved charging current limit.

Field

chargingCurrentLimit.unit

Description

Always ampere.

Field

chargingCurrentLimit.timestamp

Description

Timestamp in ISO-8601 format when the value was last retrieved from the vehicle.

Examples

curl -X GET 'https://api.volvocars.com/energy/v1/vehicles/{vin}/recharge-status/charging-current-limit' \
  -H 'accept: application/vnd.volvocars.api.energy.chargingcurrentlimitresponse.v1+json' \
  -H 'authorization: Bearer <your-access-token>' \
  -H 'vcc-api-key: <your-vcc-api-key>'

/