Tesla
Steering Heater
Start or stop heating a vehicle's steering wheel.
POST
/v2.0/vehicles/{id}/{make}/cabin/steering_wheel
This endpoint is currently available for TESLA
Permission
control_climate
Request
Path
idrequired
string
The vehicle id of the vehicle you are making a request to.
makerequired
string
The make of the vehicle you are making a request to.
Body
bodyrequired
string
Indicate whether to start or stop heating the vehicle’s steering wheel.
Options: START
or STOP
curl "https://api.smartcar.com/v2.0/vehicles/{id}/{make}/climate/defroster" \
-H "Authorization: Bearer {token}" \
-X "POST" \
-H "Content-Type: application/json" \
-d '{"action" : "STOP"}'
Response
status
string
If the request is successful, Smartcar will return status containing the action sent to the vehicle.
UNAVAILABLE
indicates the vehicle is not equipped with a steering wheel heater.
{
"status": "START",
}
curl "https://api.smartcar.com/v2.0/vehicles/{id}/{make}/climate/defroster" \
-H "Authorization: Bearer {token}" \
-X "POST" \
-H "Content-Type: application/json" \
-d '{"action" : "STOP"}'
{
"status": "START",
}