Skip to content

Notify_pushover

Chris Caron edited this page May 28, 2019 · 16 revisions

Pushover Notifications

  • Source: https://pushover.net/
  • Icon Support: No
  • Message Format: Text
  • Message Limit: 512 Characters per message

There isn't too much configuration for Pushover notifications. The message is basically just passed to your online Pushover account and then gets relayed to your device(s) you've setup from there.

Getting Your User Key

Once you log into the website, your dashboard will present your {user_key} in front of you.

Getting Your API Token

On the dashboard after logging in, if you scroll down you'll have the ability to generate an application. Upon doing so, you will be provided an API Token to associate with this application you generated. This will become your {token}.

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}

Parameter Breakdown

Variable Required Description
user_key Yes The user key identifier associated with your Pushover account. This is NOT your email address. The key can be acquired from your Pushover dashboard.
token Yes The token associated with your Pushover account.
device_id No The device identifier to send your notification to. By default if one isn't specified then all of devices associated with your account are notified.
priority No Can be low, moderate, normal, high, or emergency; the default is normal if a priority isn't specified.

Example

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
Clone this wiki locally