Loading...
Loading...
Best practices for webhook handlers. Use when implementing the handler sequence (verify first, parse second, handle idempotently), idempotency, error handling, retry logic, or framework-specific issues with Express, Next.js, or FastAPI.
npx skill4agent add hookdeck/webhook-skills webhook-handler-patterns| Code | Meaning | Provider Behavior |
|---|---|---|
| Success | No retry |
| Client error | Usually no retry (except 429) |
| Server error | Retry with backoff |
| Rate limited | Retry after delay |