idempotency_conflict
Returned as conflict_error with HTTP 409.
What happened
An `Idempotency-Key` was reused with a different request body, or the original request with this key is still in flight.
How to fix it
Use a fresh UUID per logical operation; reuse a key only to retry the *same* request unchanged.
The envelope
{
"error": {
"type": "conflict_error",
"code": "idempotency_conflict",
"message": "…",
"request_id": "req_8f2c4a1b",
"doc_url": "https://docs.renza.io/errors/idempotency_conflict"
}
}See Errors for the full contract, and note the CLI maps this to a stable exit code — see Output & exit codes.