Delete a Climate Preset

Deletes a specified climate preset for a specified thermostat.

Specify the device_id of the desired thermostat and the climate_preset_key of the desired climate preset.

Code

await seam.thermostats.deleteClimatePreset({
  device_id: "123e4567-e89b-12d3-a456-426614174000",
  climate_preset_key: "occupied",
});

Output

// void
Authentication Methods
  • API key

  • Client session token

  • Personal access token Must also include the seam-workspace header in the request.

To learn more, see Authentication.

Request Parameters

climate_preset_key String (Required)

Climate preset key of the climate preset that you want to delete.


device_id String (Required)

ID of the thermostat device for which you want to delete a climate preset.


Response

void


Examples

Last updated

Was this helpful?

Revision created

ci: Generate docs