From 98ded8a17ba40446bccd1a32227db77409131429 Mon Sep 17 00:00:00 2001 From: Chris Caron Date: Wed, 25 Sep 2019 14:25:29 -0400 Subject: [PATCH] Updated Notify_pushover (markdown) --- Notify_pushover.md | 20 ++++++++++++++++---- 1 file changed, 16 insertions(+), 4 deletions(-) diff --git a/Notify_pushover.md b/Notify_pushover.md index 2774ac6..4d381d3 100644 --- a/Notify_pushover.md +++ b/Notify_pushover.md @@ -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 ``` \ No newline at end of file