Delete a Thermostat Schedule
Deletes a thermostat schedule for a specified thermostat.
Deletes a thermostat schedule for a specified thermostat.
Code:
await seam.thermostats.schedules.delete({
thermostat_schedule_id: "0d42131f-ceb2-4fdf-b44e-3cc1143f98de",
});Output:
// voidDeletes a thermostat schedule for a specified thermostat.
Code:
curl --include --request POST "https://connect.getseam.com/thermostats/schedules/delete" \
--header "Authorization: Bearer $SEAM_API_KEY" \
--json @- <<EOF
{
"thermostat_schedule_id": "0d42131f-ceb2-4fdf-b44e-3cc1143f98de"
}
EOFOutput:
{}Deletes a thermostat schedule for a specified thermostat.
Code:
seam.thermostats.schedules.delete(
thermostat_schedule_id="0d42131f-ceb2-4fdf-b44e-3cc1143f98de"
)Output:
NoneDeletes a thermostat schedule for a specified thermostat.
Code:
Output:
Deletes a thermostat schedule for a specified thermostat.
Code:
Output:
Deletes a thermostat schedule for a specified thermostat.
Code:
Output:
Request Parameters
thermostat_schedule_id String (Required)
ID of the thermostat schedule that you want to delete.
Response
Returns: void
Last updated
Was this helpful?

