Skip to main content
Webhooks send automated notifications to your destination URL when important events occur in your website. Use the webhooks endpoints to:
  • List configured webhook destinations
  • Create a webhook destination
  • Delete a webhook destination
  • Subscribe to one or more webhook event types

Destination URL

Your destination URL should:
  • Be reachable over HTTPS
  • Return a successful 2xx response after receiving an event
  • Validate incoming payloads before updating internal systems
  • Process events idempotently, since delivery retries can send the same event more than once

Event types

View webhook event types

See the event names you can include in the events array when creating a webhook.

Manage webhooks

MethodPathDescription
GET/webhooksList all webhooks.
POST/webhooksCreate a webhook.
DELETE/webhooks/{id}Delete a webhook.
See the endpoint reference for the request and response fields supported by webhook operations.
Last modified on June 11, 2026