Idempotency
Idempotency lets you safely retry POST requests without creating duplicate resources.Header
Include anIdempotency-Key header on POST requests. Reusing the same key will return the original result for duplicates.
Example
Notes
- Use a unique key per logical operation.
- Keys should be unique and stable across retries.

