If your endpoint does not return a
2xx HTTP response, the system automatically retries.
Retry Policy
After the final failed attempt, an email is sent to the registered admin address with details of the undelivered event.
Best Practices
- Return
200 OKwithin 5 seconds; offload heavy work to background jobs. - Store and de-duplicate by
event idto ensure idempotency. - Implement exponential backoff if you replay events from your side.
- Monitor endpoint health (latency and error rates).

