Outgoing webhooks
Notify external systems with a signed POST when an issue changes.
Outgoing webhooks notify external systems with a signed HTTP request every time an event happens on an issue in the workspace.
What it is
Configured in Settings → Webhooks (admins only): a target URL and, optionally, the events that trigger it.
What it’s for
Integrating Hilbana with Slack, your backend or any automation that reacts to issue changes in real time.
How to use it
- Register the webhook with its URL and pick the events (if you pick none, all are sent): created, state, assignee, priority, project, cycle or milestone change.
- Hilbana sends a POST with the event data and an HMAC-SHA256 signature in the headers; your receiver verifies it with the webhook’s secret (shown in the list).
- In manual mode, the webhook doesn’t react to automatic events: it’s only fired by an Automations rule that picks it as an action.
Details
- Delivery is «fire-and-forget», with a short timeout: there are no retries or delivery log. A downed receiver misses that event, but it never breaks the issue’s change.
Related: Automations · Inbound webhooks · Issues.