Updated Notify_pushover (markdown)

Chris Caron 2023-07-01 12:49:38 -04:00
parent c779dcb268
commit 6be41e0ba3

@ -33,6 +33,16 @@ Valid syntax is as follows:
| url | No | Can optionally provide a Supplementary URL to go with your message
| url_title | No | Can optionally provide a Supplementary URL Title to go with your message
## Custom Sounds
Pushover integration constrains notification sounds to a predefined list. This change adds support for custom sound in notifications, which must be uploaded and given a name. This change updates the pushover integration to allow for that name to be specified instead of throwing an error.
1. Go to Settings -> Alert Settings -> Manage custom sounds -> Upload a sound
1. Upload a sound and specify a name (e.g. "mysound").
1. Validate the sound is accessible and present in the sounds list for your app via https://api.pushover.net/1/sounds.json?token={app-token}
1. Specify a sound in your pover call, i.e. apprise -vv -t "title" -b "test message" pover://user@app?sound=mysound
You should hear your custom sound on the notification. In cases where the custom sound name is not found, the default pushover notification sound will play.
#### Example
Send a Pushover notification to all of our configured devices:
```bash