Skip to main content

Errors

Error responses of the API will return one of the HTTP error codes listed below in the Status Codes and Errors table. Error responses will contain a JSON-encoded body of the following format:

{
"type": "forbidden", // short error type
"message": "forbidden. No access to this resource" // detailed error message
}

Status Codes and Errors

CodeNameDescription
200OKSuccess
201CreatedSuccess
202AcceptedSuccess
204No ContentSuccess, but no response content
400Bad RequestThe provided request was invalid. Most of the times, the given format is incorrect.
401UnauthorizedInvalid authorization. Check your access tokens or tenant id and secret
403ForbiddenAccess for the given resource or operation was denied
404Not FoundThe requested resource doesn't exist
409ConflictThe request conflicts with a previous request
429Too Many RequestsToo many requests hit the API too quickly. Rate limit exceeded
5xxServer ErrorsUnknown finoOS server errors

For concrete responses and their possible error responses have a look at the API Reference section.