Updated Notify_pushover (markdown)

master
Chris Caron 2019-09-25 14:25:29 -04:00
parent 96282f3061
commit 98ded8a17b
1 changed files with 16 additions and 4 deletions

@ -14,10 +14,11 @@ On the dashboard after logging in, if you scroll down you'll have the ability to
### Syntax
Valid syntax is as follows:
* **pover**://**{user_key}**@**{token}**
* **pover**://**{user_key}**@**{token}**/**{device_id}**
* **pover**://**{user_key}**@**{token}**/**{device_id1}**/**{device_id2}**/**{device_idN}**
* **pover**://**{user_key}**@**{token}**?**priority={priority}**
* `pover://{user_key}@{token}`
* `pover://{user_key}@{token}/{device_id}`
* `pover://{user_key}@{token}/{device_id1}/{device_id2}/{device_idN}`
* `pover://{user_key}@{token}?priority={priority}`
* `pover://{user_key}@{token}?priority=emergency&expire={expire}&retry={retry}`
### Parameter Breakdown
| Variable | Required | Description
| ----------- | -------- | -----------
@ -35,4 +36,15 @@ Send a Pushover notification to all of our configured devices:
# Assuming our {user_key} is 435jdj3k78435jdj3k78435jdj3k78
# Assuming our {token} is abcdefghijklmnop-abcdefg
apprise pover://435jdj3k78435jdj3k78435jdj3k78@abcdefghijklmnop-abcdefg
```
Send a Pushover notification with the Emergency Priority:
```bash
# Emergency priority advises you to also specify the expire and
# retry values.
# Assuming our {user_key} is 435jdj3k78435jdj3k78435jdj3k78
# Assuming our {token} is abcdefghijklmnop-abcdefg
# The following will set a 1hr expiry and attempt to resend
# the message every 10 minutes:
apprise pover://435jdj3k78435jdj3k78435jdj3k78@abcdefghijklmnop-abcdefg?priority=emergency&retry=600&expire=3600
```