Last updated 13 days ago
Was this helpful?
POST /thermostats/schedules/delete ⇒ void
Deletes a for a specified .
Request
await seam.thermostats.schedules.delete({ thermostat_schedule_id: "89d3507e-60e3-4101-bd1b-ba066ec30ad4", });
Response
// void
seam.thermostats.schedules.delete( thermostat_schedule_id="89d3507e-60e3-4101-bd1b-ba066ec30ad4" )
None
seam.thermostats.schedules.delete(thermostat_schedule_id: "89d3507e-60e3-4101-bd1b-ba066ec30ad4")
nil
<?php $seam->thermostats->schedules->delete( thermostat_schedule_id: "89d3507e-60e3-4101-bd1b-ba066ec30ad4" );
null
seam thermostats schedules delete --thermostat_schedule_id "89d3507e-60e3-4101-bd1b-ba066ec30ad4"
{}
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"), }, ) }
API key
Client session token
Personal access token Must also include the seam-workspace header in the request.
seam-workspace
thermostat_schedule_id
Format: UUID Required: Yes
UUID
ID of the desired thermostat schedule.
void