diff --git a/source/_components/notify.pushover.markdown b/source/_components/notify.pushover.markdown index 0fb220a4438..b9b2dce48a3 100644 --- a/source/_components/notify.pushover.markdown +++ b/source/_components/notify.pushover.markdown @@ -53,3 +53,23 @@ This is a quote from the Pushover website regarding free/open source apps: When setting up the application you can use this [icon](https://home-assistant.io/images/favicon-192x192.png). To use notifications, please see the [getting started with automation page](/getting-started/automation/). + +When sending a notification, optional parameters can also be set as per the pushover [API documentation](https://pushover.net/api). + +Example notification triggered from the Alexa component for an intents is shown below which also uses [Automation Templating](/getting-started/automation-templating/) for the message: + +```yaml +# Example configuration.yaml entries +alexa: + intents: + LocateIntent: + action: + service: notify.notify + data_template: + message: "The location of {% raw %}{{ User }}{% endraw %} has been queried via Alexa." + data: + title: "Home Assistant" + sound: falling + device: pixel + url: "https://home-assistant.io/" +```