idempotency_conflict
An idempotency key was reused with a different body.
| HTTP | code | Retryable? |
|---|---|---|
| 409 | idempotency_conflict | no |
When it happens
You sent the same idempotency key with different parameters than the original request.
How to resolve it
Use a new idempotency key for a different request, or resend the exact same body.
Example
{
"type": "https://docs.skipo.com/errors/idempotency_conflict",
"title": "Idempotency conflict",
"status": 409,
"code": "idempotency_conflict",
"retryable": false,
"detail": "An idempotency key was reused with a different body."
}
Back to the error catalog · See the error format.