What Are Webhooks?
Webhooks send HTTP POST requests to your server when events occur in your account.
How They Work
- You configure a webhook endpoint URL
- You select which events you want to receive
- When an event occurs, we POST to your endpoint
- Your server processes the payload and returns a 2xx status
Why Use Webhooks?
Instead of polling our API to check for changes, webhooks push updates to you as they happen. This means lower latency and fewer API calls.
Common uses:
- Sync user data to your CRM when members join
- Trigger Slack notifications on team changes
- Update external systems in real-time
Getting Started
Security
All webhooks are signed using HMAC-SHA256. Always verify signatures before trusting webhook data.