-
-
Notifications
You must be signed in to change notification settings - Fork 420
Notify_notifiarr
Chris Caron edited this page Oct 15, 2023
·
7 revisions
- Source: https://notifiarr.com
- Icon Support: No
- Attachment Support: No
- Message Format: Text
- Message Limit: 32768 Characters per message
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}
.
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.
Valid syntax is as follows:
notifiarr://{api_key}/{channel}
notifiarr://{api_key}/{channel1}/{channel2}/{channelN}
Variable | Required | Description |
---|---|---|
api_key | Yes | Your 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 |
Send a discord notification:
# Assuming our {APIKey} is 4174216298
# Assuming our {Channel} is General
# Test out the changes with the following command:
apprise -t "Test Title" -b "Test Message" \
"notifiarr://4174216298/General"
If you have a Discord Event ID you wish to reference, you can do the following:
# Assuming our {APIKey} is 4174216298
# Assuming our {Channel} is General
# Assuming our {EventID} is 1234
# Test out the changes with the following command:
apprise -t "Test Title" -b "Test Message" \
"notifiarr://4174216298/General?event=1234"