Set the HVAC Mode

Sets the HVAC mode for a specified thermostat.

Specify the desired heating and cooling set points in °C or °F.

Code

await seam.thermostats.setHvacMode({
  device_id: "123e4567-e89b-12d3-a456-426614174000",
  hvac_mode_setting: "heat_cool",
  heating_set_point_celsius: 20,
  cooling_set_point_celsius: 25,
});

Output

{
  "action_attempt_id": "123e4567-e89b-12d3-a456-426614174000",
  "status": "success",
  "action_type": "SET_HVAC_MODE"
}
Authentication Methods
  • API key

  • Client session token

  • Personal access token Must also include the seam-workspace header in the request.

To learn more, see Authentication.

Request Parameters

device_id String (Required)

ID of the thermostat device for which you want to set the HVAC mode.


hvac_mode_setting String (Required)


cooling_set_point_celsius Number

Cooling set point in °C that you want to set for the thermostat. You must set one of the cooling_set_point parameters.


cooling_set_point_fahrenheit Number

Cooling set point in °F that you want to set for the thermostat. You must set one of the cooling_set_point parameters.


heating_set_point_celsius Number

Heating set point in °C that you want to set for the thermostat. You must set one of the heating_set_point parameters.


heating_set_point_fahrenheit Number

Heating set point in °F that you want to set for the thermostat. You must set one of the heating_set_point parameters.


Response

action_attempt

Last updated

Was this helpful?