Idempotency semantics
Idempotency prevents duplicate messages when clients retry POST requests.
How to use it
- Generate a unique
Idempotency-Keyper logical send. - Reuse the same key for retries of the same request.
- Do not reuse the key for different payloads.
When to use it
- Network timeouts
- 429 responses with
Retry-After - Client retries after transient failures