Skip to content

Notify_notifiarr

Chris Caron edited this page Nov 16, 2023 · 5 revisions

Notifiarr Notifications

  • Source: https://notifiarr.com
  • Icon Support: No
  • Attachment Support: No
  • Message Format: Text
  • Message Limit: 32768 Characters per message

Account Setup

You need to first set up an account with Notifiarr if you don't have one already. From there you can generate yourself your {api_key}. You will need to use your “global” API key, the integration-specific Notifiarr API keys do not work with Apprise.

Discord Channel IDs

To use Notifiarr, you need your Discord ChannelID. It must be the numeric version of it. Here is some great instructions on how to get it.

In short:

  • Enable Developer Mode by visiting your Discord Settings and going to Appearance.

Syntax

Valid syntax is as follows:

  • notifiarr://{api_key}/{channel_id}
  • notifiarr://{api_key}/{channel1_id}/{channel2_id}/{channelN_id}

Parameter Breakdown

Variable Required Description
api_key Yes Your global (not integration-specific) Notifiarr API Key
source No Optionally provide the source of the notification as a descriptive string (you can also use from as an alias to this same variable)
event No Optionally specify the Notifiarr Event ID you want your notification update. If none is specified, then a new notification is generated
discord_user No Optionally specify the Discord User ID you wish to Ping via Notifiarr
discord_role No Optionally specify the Discord Role ID you wish to Ping via Notifiarr

Example

Send a discord notification:

# Assuming our {APIKey} is 4174216298
# Assuming our {ChannelID} is 123456789
# Test out the changes with the following command:
apprise -t "Test Title" -b "Test Message" \
"notifiarr://4174216298/123456789"

If you have a Discord Event ID you wish to reference, you can do the following:

# Assuming our {APIKey} is 4174216298
# Assuming our {ChannelID} is 123456789
# Assuming our {EventID} is 1234
# Test out the changes with the following command:
apprise -t "Test Title" -b "Test Message" \
"notifiarr://4174216298/123456789?event=1234"
Clone this wiki locally