Set the Fallback Climate Preset
Sets a specified climate preset as the "fallback" preset for a specified thermostat.
Sets a specified climate preset as the "fallback" preset for a specified thermostat.
Code:
await seam.thermostats.setFallbackClimatePreset({
device_id: "9a21ddcb-8eeb-4351-8770-1835c3db8b2e",
climate_preset_key: "Eco",
});Output:
// voidSets a specified climate preset as the "fallback" preset for a specified thermostat.
Code:
curl --include --request POST "https://connect.getseam.com/thermostats/set_fallback_climate_preset" \
--header "Authorization: Bearer $SEAM_API_KEY" \
--json @- <<EOF
{
"device_id": "9a21ddcb-8eeb-4351-8770-1835c3db8b2e",
"climate_preset_key": "Eco"
}
EOFOutput:
{}Sets a specified climate preset as the "fallback" preset for a specified thermostat.
Code:
seam.thermostats.set_fallback_climate_preset(
device_id="9a21ddcb-8eeb-4351-8770-1835c3db8b2e", climate_preset_key="Eco"
)Output:
NoneSets a specified climate preset as the "fallback" preset for a specified thermostat.
Code:
seam.thermostats.set_fallback_climate_preset(
device_id: "9a21ddcb-8eeb-4351-8770-1835c3db8b2e",
climate_preset_key: "Eco",
)Output:
nilSets a specified climate preset as the "fallback" preset for a specified thermostat.
Code:
$seam->thermostats->set_fallback_climate_preset(
device_id: "9a21ddcb-8eeb-4351-8770-1835c3db8b2e",
climate_preset_key: "Eco"
);Output:
Sets a specified climate preset as the "fallback" preset for a specified thermostat.
Code:
seam thermostats set-fallback-climate-preset --device_id "9a21ddcb-8eeb-4351-8770-1835c3db8b2e" --climate_preset_key "Eco"Output:
{}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
Last updated
Was this helpful?

