IdempotencyConflict 400

When does this happen?

You sent a request with an Idempotency-Key that was already used for a different request body. Each idempotency key must be paired with exactly one request body.

Example response

{
  "_tag": "IdempotencyConflict",
  "type": "IdempotencyConflict",
  "message": "Idempotency key already used with a different request body",
  "docs_url": "https://docs.borderli.dev/errors/IdempotencyConflict"
}

What to do

Generate a new idempotency key for this request. If you're retrying a failed request, use the original key with the original body. See Idempotency for details.

← Back to Error Handling