POST /thermostats/schedules/delete ⇒ void
Request
await seam.thermostats.schedules.delete({
thermostat_schedule_id: "89d3507e-60e3-4101-bd1b-ba066ec30ad4",
});
Response
Request
seam.thermostats.schedules.delete(
thermostat_schedule_id="89d3507e-60e3-4101-bd1b-ba066ec30ad4"
)
Response
Request
seam.thermostats.schedules.delete(thermostat_schedule_id: "89d3507e-60e3-4101-bd1b-ba066ec30ad4")
Response
Request
<?php
$seam->thermostats->schedules->delete(
thermostat_schedule_id: "89d3507e-60e3-4101-bd1b-ba066ec30ad4"
);
Response
Request
seam thermostats schedules delete --thermostat_schedule_id "89d3507e-60e3-4101-bd1b-ba066ec30ad4"
Response
Request
package main
import api "github.com/seamapi/go"
import schedules "github.com/seamapi/go/schedules"
func main() {
client.Thermostats.Schedules.Delete(
context.Background(),
schedules.SchedulesDeleteRequest{
ThermostatScheduleId: api.String("89d3507e-60e3-4101-bd1b-ba066ec30ad4"),
},
)
}
Response
ID of the desired thermostat schedule.