Guides
Webhooks
Push notifications for record changes (coming soon)
Webhooks are coming soon. This page will be updated when the feature is available.
What to expect
When webhooks ship, Clarify will send an HTTP POST to your endpoint whenever
records are created, updated, or deleted. You'll be able to:
- Subscribe to specific object types (
person,company,deal). - Filter by event type (
create,update,delete). - Receive the full record payload in the webhook body.
In the meantime
Until webhooks are available, these approaches give you near-real-time syncing:
- Code workflows — run JavaScript on record changes and call out to your system. See Build a workflow.
- Reverse ETL — tools like Segment can sync from your warehouse to Clarify on a schedule.
- API polling — poll the Records endpoints and filter by an updated-at timestamp to pick up changes.