Error Handling
In case a request to our API fails, the return value of the endpoints follows standard HTTP status code conventions.
A detailed reason can be found in the response. Common codes indicating a client error are 400 BadRequest and
404 NotFound`.
To give some further information on the cause of the error, the API also returns a standardized error object in the response body.
code
: A unique identifier for the error.description
: A human-readable explanation for the cause of the error.link
: A link to the corresponding documentation.details
: Further explanations or hints on fixing the request.validationErrors
: If the model validation failed, all violations are listed here.
Error Codes
HTTP Status Codes
On each request to our API, you will receive a response with a HTTP status code that indicates if it was successful.