Webhooks
If you need to listen to sync lifecycle events or when sync alerts are raised or resolved in your workspace, webhooks can be configured in Workspace settings under the Webhooks tab.
Event Types
There are two main types of events your webhook can be subscribed to: sync alert events and sync run lifecycle events.
Sync Alert Events
sync.alert.raised - when any subscribed sync alert in your workspace is triggered
sync.alert.resolved - when any subscribed sync alert is resolved
Sync Run Lifecycle Events
sync.triggered - when a sync run has been queued
sync.started - when active work on the sync run has started
sync.completed - when the sync run has completed, for both succesful and failed sync runs
sync.success - when a sync run is completed successfully
sync.failed - when a sync run has failed
Creating a Webhook
Configure a new webhook under the Webhooks tab by clicking Add Webhook and providing:
Name - required name for your webhook
Description - optional additional details or description for your webhook
Endpoint - required endpoint to which Census should send payloads to
Events - subscribe to at least one of the supported events
Once you click Create, a one-time secret will be shown that you may use to validate the authenticity of the payloads you receive. Note that this secret will not be accessible later and it is recommended you make a copy of it.
Validating Webhook Payloads
To verify the webhook payloads your server receives are actually coming from Census, use the secret from the creation flow to validate each payload. Each payload will include a HMAC-SHA256 X-Signature
header calculated using the payload and secret token.
Example Python code for validating payloads:
Webhooks via API
Last updated
Was this helpful?