Delete Climate Setting Schedule
Delete a Climate Setting Schedule
DELETE
https://connect.getseam.com/climate_setting_schedules/delete
Query Parameters
Name
Type
Description
climate_setting_schedule_id*
String
ID of the Climate Setting Schedule to be deleted.
{
"action_attempt": {
"status": "pending",
"action_type": "DELETE_CLIMATE_SETTING_SCHEDULE",
"action_attempt_id": "6a5e05e3-fd92-4211-aecb-ac53f1382ea1",
"result": null,
"error": null
},
"ok": true
}
Code Example
seam.climate_setting_schedules.delete("123e4567-e89b-12d3-a456-426614174000")
# ActionAttempt(
# action_attempt_id='9b9aa024-2502-42a3-96d1-aed9606fde1b',
# action_type='DELETE_CLIMATE_SETTING_SCHEDULE',
# status='success',
# result={},
# error=None
# )
Parameters
climate_setting_schedule_id
type: string
ID of the Climate Setting Schedule
Response
This section shows the JSON response returned by the API. Since each language encapsulates this response inside objects specific to that language and/or implementation, the actual type in your language might differ from what’s written here.
JSON format
{
"action_attempt": {
"status": "pending",
"action_type": "DELETE_CLIMATE_SETTING_SCHEDULE",
"action_attempt_id": "6a5e05e3-fd92-4211-aecb-ac53f1382ea1",
"result": null,
"error": null
},
"ok": true
}
Last updated
Was this helpful?