Electric Vehicles
Charge Limit
Returns the charge limit configuration for the vehicle.
GET
/v2.0/vehicles/{id}/charge/limit
Permission
read_charge
Request
Path
idrequired
string
The vehicle id of the vehicle you are making a request to.
curl "https://api.smartcar.com/v2.0/vehicles/{id}/charge/limit" \
-H "Authorization: Bearer {token}" \
-X "GET"
Response
limit
number
The level at which the vehicle will stop charging and be considered fully charged as a percent.
{
"limit": 0.8,
}
Notes
This endpoint will return a CHARGING_PLUG_NOT_CONNECTED
error if the OEM is unable to provide a charge limit unless the vehicle is plugged in.
curl "https://api.smartcar.com/v2.0/vehicles/{id}/charge/limit" \
-H "Authorization: Bearer {token}" \
-X "GET"
{
"limit": 0.8,
}