Skip to main content

Overview

Webhooks send real-time notifications to your server when events occur in your workspace. Use them to integrate with external systems.

Accessing

  1. Open Settings from the sidebar
  2. Go to API tab
  3. Select Webhook sub-tab

Available Events

EventDescription
website.createdNew website created
website.updatedWebsite content updated
website.publishedWebsite published
website.deletedWebsite deleted
customer.createdNew customer added
form.submittedForm submission received

Setup Process

  1. Enter your webhook endpoint URL
  2. Select events to subscribe to
  3. Save configuration
  4. 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