Webhooks
Setup webhooks to get notified.
Create & Manage
To create and manage your webhooks, head over to /settings and click on the webhook tab.
When adding a new webhook, you'll be choosing a GET or POST request. If you choose POST, it'll need a body. Whereas GET requests don't.
You'll need to add up to two things for the webhook to work:
{message} - Contains the notification content. See: Events
{title} - Contains the notification title. See: Events & Status watcher
Example
URL: https://example.webhook.com?text={title}%0A{message}
This can also be added in the body of a POST request.
Useful HTML codes for your notification content:
%0A
New line
%20
Space
Link to an app
To link a webhook to one of your app, head over to /apps/{app_id}, click on the settings tab then on the Notifications button on the sidebar.
Here, you can choose between all of your webhooks to link your app to.
Last updated
Was this helpful?