Webhooks
We can send notifications about the progress of certain async processes to a URL of your choice. You can configure the webhook URL in the Heron dashboard by navigating to the “Settings” tab on the left menu bar.
This is an example structure of our webhooks:
-
topic
is the topic of this webhook in the format<resource>.<event>
. Currently we support webhooks for the following topics: -
created
is the UTC datetime when the webhook was sent, in ISO format. -
data
contains the data of the resource which relates to this event. -
meta
(optional) contains further information about the event.
Verification
We send a Heron-Signature
header in every webhook request. This header is a
base64-encoded HMAC SHA256 digest of your shared secret and the webhook’s
payload.
To verify the webhook was sent by us, calculate the digital signature using the
same algorithm and compare it to the Heron-Signature
header.
Here is an example of how to calculate the signature in Python:
And in JavaScript (Node):
Slack webhooks integration
If you don’t want to build a system for receiving webhooks, we support Slack Incoming Webhooks URLs when you create a webhook. This allows you to fire alerts generated by Heron Data (e.g. a rule has been broken) directly into a Slack channel for you to take action.
Follow these steps:
- Follow the Slack Incoming Webhook Documentation.
- Slack will create a webhook url of the format
https://hooks.slack.com/services....
for you. Copy this url. - Open the Heron Data dashboard, navigate to the
Settings
page on the left, and go toWebhooks
. - Press
Add webhook
and pick the appropriate topic. Most commonly, you’ll want to fire a Slack alert when a rule has been broken. The webhook topic for this isend_user.review_required
. - Press
Create webhook
. - To test the Slack webhook, re-process a company that breaks a rule. This will now fire a Slack alert!
Was this page helpful?