ClavianAPI errors
All error codes

500 Internal Server Error

Something went wrong

Code
internal_error
Status
500 Internal Server Error
Type
https://errors.clavian.io/internal-error

What it means

The API failed while handling the request, and nothing the request would have changed was kept. It is safe to send again, with the same Idempotency-Key where the endpoint takes one.

What to do

Retry once after a short wait. If it keeps failing, show the requestId so the person can quote it to support: it identifies this request in the API’s logs and traces.

Example

The API answers with status 500 and this body, as application/problem+json. A detail may be added, saying what went wrong this time; it is for people, and changes.

{
  "type": "https://errors.clavian.io/internal-error",
  "title": "Something went wrong",
  "status": 500,
  "code": "internal_error",
  "requestId": "req_01k5znw4hmfay8vvr14d2pf2db"
}

Endpoints that return it

101 endpoints in the OpenAPI document name it among their answers.

All 101 endpoints