Delete a Thermostat Daily Program
Deletes a thermostat daily program.
Deletes a thermostat daily program.
Code:
await seam.thermostats.dailyPrograms.delete({
thermostat_daily_program_id: "a8665859-629e-4696-88b1-1eda1976250a",
});Output:
// voidDeletes a thermostat daily program.
Code:
curl --include --request POST "https://connect.getseam.com/thermostats/daily_programs/delete" \
--header "Authorization: Bearer $SEAM_API_KEY" \
--json @- <<EOF
{
"thermostat_daily_program_id": "a8665859-629e-4696-88b1-1eda1976250a"
}
EOFOutput:
{}Deletes a thermostat daily program.
Code:
seam.thermostats.daily_programs.delete(
thermostat_daily_program_id="a8665859-629e-4696-88b1-1eda1976250a"
)Output:
NoneDeletes a thermostat daily program.
Code:
seam.thermostats.daily_programs.delete(
thermostat_daily_program_id: "a8665859-629e-4696-88b1-1eda1976250a",
)Output:
nilDeletes a thermostat daily program.
Code:
$seam->thermostats->daily_programs->delete(
thermostat_daily_program_id: "a8665859-629e-4696-88b1-1eda1976250a"
);Output:
Deletes a thermostat daily program.
Code:
seam thermostats daily-programs delete --thermostat_daily_program_id "a8665859-629e-4696-88b1-1eda1976250a"Output:
{}Request Parameters
thermostat_daily_program_id String (Required)
ID of the thermostat daily program that you want to delete.
Response
void
Last updated
Was this helpful?

