invalid_idempotency_key
invalid_idempotency_key
Description
The admin notification idempotency key is blank after trimming.
HTTP Status
400 Bad Request
doc_url Format
The doc_url value is an absolute URL and changes by environment:
<docs-base-url>/errors/invalid_idempotency_key
Typical Causes
- The
X-Quarzo-Life-Idempotency-Keyheader is present but contains only whitespace.
Example
Response:
json
{
"errors": [
{
"code": "invalid_idempotency_key",
"message": "Provided idempotency key is invalid.",
"doc_url": "https://docs.example.com/errors/invalid_idempotency_key"
}
]
}How To Fix
- Omit the header if you do not need idempotency.
- Otherwise, send a non-empty key.