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 Code | HTTP Status Message | Explaination | Notes |
---|---|---|---|
200 | OK | Request processed normally | The 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. |
400 | Bad Request | Problem reading or understanding request | The 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. |
401 | Unauthorized | Authentication required | You need to input valid authentication credentials (username/password) to access the resource. |
403 | Forbidden | Insufficient permission to process request | You do not have the appropriate user rights to access the request. Do not repeat the request. |
404 | Not Found | File Not Found | It 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. |
413 | Payload Too Large | Request Entity Too Large | The body of your request was too large. The maximum request size is 10MB. Send the request again with a size of less than 10MB. |
500 | Internal Server Error | Server could not process request | The 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. |