Migrate Tibber notify service (#32601)

This commit is contained in:
Jan Bouwhuis 2024-05-14 16:35:13 +02:00 committed by GitHub
parent 23a7ca0d9d
commit 7a8cdb201a
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -35,7 +35,7 @@ Go to [developer.tibber.com/settings/accesstoken](https://developer.tibber.com/s
## Notifications ## Notifications
Tibber can send a notification by calling the [`notify` service](/integrations/notify/). It will send a notification to all devices registered in the Tibber account. Tibber can send a notification by calling the [`notify.send_message` service](/integrations/notify/). It will send a notification to all devices registered in the Tibber account.
To use notifications, please see the [getting started with automation page](/getting-started/automation/). To use notifications, please see the [getting started with automation page](/getting-started/automation/).
@ -43,8 +43,9 @@ To use notifications, please see the [getting started with automation page](/get
```yaml ```yaml
action: action:
service: notify.tibber service: notify.send_message
data: data:
entity_id: notify.tibber
title: Your title title: Your title
message: This is a message for you! message: This is a message for you!
``` ```