Webhooks API
This reference covers the REST API for managing webhook subscriptions. For setup, security verification, and retry handling patterns, see the Webhook Integration Guide.Base URL
Authorization header.
Event Types
Subscribe to one or more event types when registering a webhook. Events are namespaced by domain.
Wildcard
* is supported (e.g., payment.*) but not recommended in production — explicit lists make consumer behavior clearer.
Endpoints
Register Webhook
List Webhooks
Update Webhook
Delete Webhook
Rotate Signing Secret
Retry a Failed Event
List Recent Deliveries
Event Payload Shape
Every webhook POST to your endpoint follows this envelope:Headers
Always verify
X-Cronozen-Signature before processing — see the verification example.
Rate Limits
Webhook outbound delivery from Cronozen has no per-endpoint rate limit, but high-frequency endpoints may queue. If your endpoint cannot keep up with a burst, return429 Retry-After — Cronozen respects this header.
Webhook management API calls follow standard API rate limits (see API Overview).