Skip to main content
Quick Summary: This Idempotency-Key was already used for a request with different method, path or body. Keys identify one exact request; use a fresh key for new content.

What happened

Within a key 24-hour lifetime, resending the same key with the same content replays the stored response (with Idempotency-Replayed: true). Sending the same key with different content is always an error — otherwise a retry could silently perform the wrong operation.

Likely causes

  • Reusing one constant key for many different requests.
  • Building the key from something that does not change with the payload.

What to do

Generate a unique key (a UUID is ideal) per logical operation, reuse it only for retries of that exact request, and never share keys across different payloads.