Set a Fallback Climate Preset
Sets a specified climate preset as the "fallback" preset for a specified thermostat.
Specify the device_id
of the desired thermostat and the climate_preset_key
of the desired fallback climate preset.
Code
await seam.thermostats.setFallbackClimatePreset({
device_id: "123e4567-e89b-12d3-a456-426614174000",
climate_preset_key: "eco",
});
Output
// void
Request Parameters
climate_preset_key
String (Required)
Climate preset key of the climate preset that you want to set as the fallback climate preset.
device_id
String (Required)
ID of the thermostat device for which you want to set the fallback climate preset.
Response
void
Examples
Last updated
Was this helpful?