Using Discord for Notifications

southwalesowl

New Member
Apr 4, 2026
2
1
3
I am trying to configure Discord as a notification target. I have email setup and that is working fine. I have created a new web hook in my Discord channel and configured it as a POST action but I get this when testing:

1775322414505.png

I have tried many different body formats that I have found but I always get the above error. Anyone know how to fix this? Thanks
 
Hi,
the following setup worked for me:

Method: POST
URL: https://discord.com/api/webhooks/<webhook.id>/<webhook.token>

Headers:
Key: "Content-Type", Value: "application/json"

Body:
JSON:
{  
   "content": "Proxmox Test Message"
}

Have a look at the Documentation of Proxmox VE - Webhook to add more context to the Notification Body that is being sent.
Also have a look at the Discord Webhook Documentation

Hope this helps.
 
  • Like
Reactions: southwalesowl