Tesla
Steering Heater
Returns the current state of a vehicle's steering wheel heater system.
GET
/v2.0/vehicles/{id}/{make}/climate/steering_wheel
This endpoint is currently available for TESLA
Permission
read_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.
curl "https://api.smartcar.com/v2.0/vehicles/{id}/{make}/climate/steering_wheel" \
-H "Authorization: Bearer {token}" \
-X "GET"
Response
status
enum
The current state of the steering wheel heater system. UNAVAILABLE
indicates the vehicle is not equipped with a steering wheel heater.
{
"status": "ON",
}
curl "https://api.smartcar.com/v2.0/vehicles/{id}/{make}/climate/steering_wheel" \
-H "Authorization: Bearer {token}" \
-X "GET"
{
"status": "ON",
}