#Issue with setting up 2nd Discord Notification

10 messages · Page 1 of 1 (latest)

pine bobcat
#

I have two Discords that I would like to send notifications to. One has been setup for a very long time. The other one I am just trying to setup. Everything else is fine and working normally.

1) I selected: Settings > Notifications >Webhook 2) I entered the webhook URL for the new discord server. 3) Selected Enable Agent, did not alter JSON Payload, selected the notification types I wanted. 4) Clicked Test > Webhook test notification failed to send

I'm probably an oddball for trying to send notifications to two separate discord servers, but any help would be very much appreciated!

Thank you,
-DataLoreQ

balmy furnace
#

Discord expects the JSON payload to be in a specific format, so you can't use the generic webhook agent as-is.

pine bobcat
#

I don't suppose anyone knows the JSON payload for discord? 😄

hidden quiver
#
{
    "avatar_url": "https://github.com/sct/overseerr/blob/develop/public/os_logo_square.png?raw=true",
    "username": "Overseerr",
    "embeds": [
        {
            "color": 1127128,
            "title": "{{notification_type}}",
            "description":"{{subject}}\n\n{{message}}\n\nStatus: {{media_status}}\n\nRequest Id: {{request_id}}\nRequested by: {{requestedBy_username}}",
            "thumbnail": {
                "url": "{{image}}"
              },
            "footer": {
                "text": "Link https://overseerrurl/{{media_type}}/{{media_tmdbid}}",
                "icon_url": "https://github.com/sct/overseerr/blob/develop/public/os_logo_square.png?raw=true"
            }
        }
    ]
}

Change the overseerrurl

pine bobcat
#

Thank you very much!

hidden quiver
pine bobcat
#

That worked just GREAT! Now to make sure I copy that code for when I need it in the future!

hidden quiver
#

Glad you got it working!

pine bobcat
#

I have loved using overseer, and haven't had an issue with it. This was something my quick search didn't find anything on. So I do appreciate your help in this!