Skip to content

Notify_pushed

lead2gold edited this page Jan 31, 2019 · 12 revisions

Pushed Notifications

  • Source: https://pushed.co/
  • Icon Support: No
  • Message Format: Text
  • Message Limit: 32768 Characters per Message

Account Setup

You'll want to Request Developer Access which is asked of you when you first log in to the site. The request can take

Syntax

Valid syntaxes are as follows:

  • pushed://{app_key}/{app_secret}
  • pushed://{app_key}/{app_secret}/@{user}
  • pushed://{app_key}/{app_secret}/#{channel}

You can also form any combination of the above and perform updates from one url:

  • pushed://{accesstoken}/@{user}/#{channel}

If neither a @{user} or #{channel} is specified, then the default configuration is to send to the app.

Parameter Breakdown

Variable Required Description
app_key Yes The Application Key can be generated on the Settings page of your Pushed's account. You must have an application key for this Notification service to work.
app_secret Yes The Application Secret can be generated on the Settings page of your Pushed's account. You must have an application secret for this Notification service to work.
user No Associated user(s) with your Pushed account can be found in your account.
channel No Channels must be prefixed with a hash (#) or they will be interpreted as a application id. Channels must be registered with your Pushed account to work.

Example

Send a Pushed notification to all devices:

# Assuming our {app_key} is abcdefghijklmno
# Assuming our {app_secret} is 12345678
apprise pushed://abcdefghijklmno/12345678
Clone this wiki locally