From 24046ec8e3a7db3d8b32a2cc2ecc00a0c5ce87d7 Mon Sep 17 00:00:00 2001 From: Zack Wagner Date: Tue, 22 Sep 2026 09:33:51 -0400 Subject: [PATCH] Add includeAlerts to thermostat selection Include the alerts array in the thermostat API response so consumers can read active maintenance reminders (furnace filter, UV lamp, AC maintenance, etc.) from thermostat.get("alerts", []). This is needed by Home Assistant's ecobee integration to power alert binary_sensor entities. Co-Authored-By: Claude Opus 4.6 --- pyecobee/__init__.py | 1 + 1 file changed, 1 insertion(+) diff --git a/pyecobee/__init__.py b/pyecobee/__init__.py index a99f155..d6e71c4 100644 --- a/pyecobee/__init__.py +++ b/pyecobee/__init__.py @@ -614,6 +614,7 @@ def get_thermostats(self) -> bool: "includeWeather": "true", "includeSettings": "true", "includeLocation": "true", + "includeAlerts": "true", } } if self.include_notifications: