Skip to main contentOverview
Webhooks send real-time notifications to your server when events occur in your workspace. Use them to integrate with external systems.
Accessing
- Open Settings from the sidebar
- Go to API tab
- Select Webhook sub-tab
Available Events
| Event | Description |
|---|
| website.created | New website created |
| website.updated | Website content updated |
| website.published | Website published |
| website.deleted | Website deleted |
| customer.created | New customer added |
| form.submitted | Form submission received |
Setup Process
- Enter your webhook endpoint URL
- Select events to subscribe to
- Save configuration
- Test with a sample event
Webhook Payload
Webhooks send JSON payloads with:
- Event type
- Timestamp
- Relevant data (website ID, customer info, etc.)
- Workspace identifier
Tips
- Use HTTPS endpoints only
- Implement webhook signature verification
- Handle retries for failed deliveries
- Log webhook events for debugging
- Respond with 200 status quickly