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 (withIdempotency-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.