Skip to content

Notify_pushplus

Chris Caron edited this page Jul 7, 2025 · 1 revision

Pushplus Notifications

Pushplus is a Chinese notification platform used to send alerts to WeChat or browser endpoints. It uses a token-based webhook system to deliver messages.

Once you create an account and subscribe to a channel, you will be issued a token used to send messages.

Setup Instructions

  1. Register or log into your account at Pushplus.
  2. From your dashboard, copy your Token under the "Push" section.
  3. Optionally configure the Pushplus app in WeChat for mobile delivery.

Your notification URL will look like this:

https://www.pushplus.plus/send?token=abc123def456ghi789jkl012mno345pq

Apprise Support

Apprise supports both the full Pushplus native webhook URL and its simplified version.

Syntax

Valid syntax is as follows:

  • https://www.pushplus.plus/send?token={token}
  • pushplus://{token}

Parameter Breakdown

Variable Required Description
token Yes Your personal Pushplus Token from your account settings

Examples

1. Using the simplified Apprise URL

apprise -vv -t "Title" -b "This is the body" \
    pushplus://abc123def456ghi789jkl012mno345pq

2. Using the token as a query parameter

apprise -vv -t "Title" -b "This is the body" \
    pushplus://?token=abc123def456ghi789jkl012mno345pq

3. Using the full native webhook URL

apprise -vv -t "Title" -b "This is the body" \
    https://www.pushplus.plus/send?token=abc123def456ghi789jkl012mno345pq

All forms above are supported and deliver messages identically.

Clone this wiki locally