You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Revert escaped underscore changes in thermostat URLs
The \_ escaping is intentional GitBook markdown to prevent italic
rendering. The validator should handle this, not the content.
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
Copy file name to clipboardExpand all lines: docs/guides/capability-guides/thermostats/setting-and-monitoring-temperature-thresholds.md
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -8,15 +8,15 @@ description: >-
8
8
9
9
You can configure Seam to emit a [`thermostat.temperature_threshold_exceeded` event](https://docs.seam.co/latest/api/events/) if a thermostat reports a temperature outside a specific threshold range. This capability helps you to monitor your thermostats proactively, alerting you to potential HVAC system misuse or malfunctioning.
10
10
11
-
Use the [`/thermostats/set_temperature_threshold`](https://docs.seam.co/latest/api/thermostats/set_temperature_threshold) endpoint to set upper and lower acceptable temperature bounds. Then, you can use a [webhook](../../developer-tools/webhooks.md) to monitor for `thermostat.temperature_threshold_exceeded` events.
11
+
Use the [`/thermostats/set_temperature_threshold`](https://docs.seam.co/latest/api/thermostats/set\_temperature\_threshold) endpoint to set upper and lower acceptable temperature bounds. Then, you can use a [webhook](../../developer-tools/webhooks.md) to monitor for `thermostat.temperature_threshold_exceeded` events.
12
12
13
13
When the thermostat reports a temperature outside the threshold range, Seam also adds a warning on the thermostat. You can use the [`/devices/get`](https://docs.seam.co/latest/api/devices/get) endpoint to get the thermostat and then inspect its `device.warnings` property.
14
14
15
15
***
16
16
17
17
## Set a Temperature Threshold
18
18
19
-
To set a temperature threshold for a thermostat, issue a [`/thermostats/set_temperature_threshold`](https://docs.seam.co/latest/api/thermostats/set_temperature_threshold) request, providing the `device_id` of the desired thermostat. Also, include the following parameters:
19
+
To set a temperature threshold for a thermostat, issue a [`/thermostats/set_temperature_threshold`](https://docs.seam.co/latest/api/thermostats/set\_temperature\_threshold) request, providing the `device_id` of the desired thermostat. Also, include the following parameters:
20
20
21
21
*`lower_limit_celsius` or `lower_limit_fahrenheit`
22
22
*`upper_limit_celsius` or `upper_limit_fahrenheit`
@@ -285,7 +285,7 @@ $seam->devices->get(
285
285
286
286
## Change a Temperature Threshold
287
287
288
-
To change the temperature threshold range for a thermostat, issue a new [`/thermostats/set_temperature_threshold`](https://docs.seam.co/latest/api/thermostats/set_temperature_threshold) request. The new threshold values replace the previous ones.
288
+
To change the temperature threshold range for a thermostat, issue a new [`/thermostats/set_temperature_threshold`](https://docs.seam.co/latest/api/thermostats/set\_temperature\_threshold) request. The new threshold values replace the previous ones.
0 commit comments