Get a Thermostat Schedule
Returns a specified thermostat schedule.
POST /thermostats/schedules/get β { thermostat_schedule }
Request Parameters
thermostat_schedule_id
String (Required)
ID of the desired thermostat schedule.
Response
{
JSON representation of thermostat_schedule
}
Examples
Get a specific thermostat schedule
Specify the thermostat_schedule_id
of the desired thermostat schedule.
Code
await seam.thermostats.schedules.get({
thermostat_schedule_id: "89d3507e-60e3-4101-bd1b-ba066ec30ad4",
});
Output
{
"thermostat_schedule_id": "89d3507e-60e3-4101-bd1b-ba066ec30ad4",
"name": "Reservation 2",
"device_id": "2d488679-6f07-4810-aed2-e726872c1dd5",
"climate_preset_key": "occupied",
"starts_at": "2024-11-10T15:00:00.000Z",
"ends_at": "2024-11-15T12:00:00.000Z",
"max_override_period_minutes": 90
}
Last updated
Was this helpful?