Skip to main content

Webhook Integration

Use webhooks to build real-time integrations — notify your CRM when staging completes, alert agents when images are ready, or trigger downstream workflows.

Setup

1. Create a webhook endpoint

2. Register the webhook

3. Test it

Best practices

  • Always verify the X-Webhook-Signature header
  • Return 200 quickly — process events asynchronously if needed
  • Handle duplicate events idempotently (use event.timestamp as dedup key)
  • Set up monitoring for webhook failures