Skip to main content

HTTP Status Codes

info

This section provides an overview of HTTP status codes you may encounter when interacting with our API.

Each status code indicates the outcome of your request, from successful processing to various types of errors.

Use these codes to understand and troubleshoot issues efficiently.

HTTP Status CodeHTTP Status MessageExplainationNotes
200OKRequest processed normallyThe request message has been successfully processed, and it has produced a response. The response message varies, depending on the request method and the requested data.
400Bad RequestProblem reading or understanding requestThe receiving server cannot understand the request because of malformed syntax. Do not repeat the request without first modifying it; check the request for errors, fix them and then retry the request.
401UnauthorizedAuthentication requiredYou need to input valid authentication credentials (username/password) to access the resource.
403ForbiddenInsufficient permission to process requestYou do not have the appropriate user rights to access the request. Do not repeat the request.
404Not FoundFile Not FoundIt was not possible to retrieve the resource you requested at the specified location. It may or may not become available again in the future. Usually, this happens when the URL you pass with the request is incorrect. You may make subsequent calls.
413Payload Too LargeRequest Entity Too LargeThe body of your request was too large. The maximum request size is 10MB. Send the request again with a size of less than 10MB.
500Internal Server ErrorServer could not process requestThe receiving server encountered an unexpected condition that prevents it from fulfilling the request. Our servers may return a 500 status code also when the request is incorrect, for example, because of a missing or not filled in mandatory field.