/thermostats/set_fallback_climate_preset request and specify the climate_preset_key of the desired climate preset.
Request:
Documentation Index
Fetch the complete documentation index at: /docs/llms.txt
Use this file to discover all available pages before exploring further.
Learn how to set a configured climate preset as the “fallback” preset for a thermostat.
/thermostats/set_fallback_climate_preset request and specify the climate_preset_key of the desired climate preset.
Request:
await seam.thermostats.setFallbackClimatePreset({
device_id: '2d488679-6f07-4810-aed2-e726872c1dd5',
climate_preset_key: 'eco',
})
curl -X 'POST' \
'https://connect.getseam.com/thermostats/set_fallback_climate_preset' \
-H 'accept: application/json' \
-H "Authorization: Bearer ${SEAM_API_KEY}" \
-H 'Content-Type: application/json' \
-d '{
"device_id": "2d488679-6f07-4810-aed2-e726872c1dd5",
"climate_preset_key": "eco"
}'
seam.thermostats.set_fallback_climate_preset(
device_id = "2d488679-6f07-4810-aed2-e726872c1dd5",
climate_preset_key = "eco"
)
# Coming soon!
$seam->thermostats->set_fallback_climate_preset(
device_id: "2d488679-6f07-4810-aed2-e726872c1dd5",
climate_preset_key: "eco"
);
// Coming soon!
void
{
"ok": true
}
None
# Coming soon!
void
// Coming soon!
Was this page helpful?