Receive events with webhooks
Subscribe to events, verify signatures, and handle redelivery.
Urbanice Admin1 min read

- API
- Webhooks
Setting up a webhook
- Provide an HTTPS endpoint URL.
- Select which event types to receive.
- Verify the signature on every request before processing it.
- Return 2xx quickly, then do the real work asynchronously.
Anything that does not return 2xx is retried, so your handler must be idempotent — the same event may arrive more than once.
