Skip to main content

Idempotency

Idempotency lets you safely retry POST requests without creating duplicate resources. Include an Idempotency-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.