Errors
This section provides information on the various HTTP status codes and corresponding error definitions that may be encountered while interacting with the API.
Note
Feature under improvement. Adding advanced applicative error messages.
HTTP Responses
The HTTP response codes play a crucial role in determining the success of an API request. In case of failure, these codes provide valuable insights into the nature of the error and whether a retry is advisable.
Code | Definition | Description |
---|---|---|
200 | OK | The request was successful |
204 | No Content | The request was successful. No content is returned. |
400 | Bad Request | Client provided invalid arguments. Please review the response for error details. Retrying with the same arguments will not work. |
401 | Unauthorized | Client did not supply credentials or did not provide the correct credentials. See Authentication. |
403 | Forbidden | Client is not authorized to view the requested resource. |
404 | Not Found | The requested resource was not found. |
408 | Request Timeout | The request took too long to process. Please try again. |
429 | Too Many Requests | The client is making requests too frequently. Wait a moment before making further requests and make them at a reduced rate. See Limits for more detail. |
500 | Internal Server Error | Unknown error occurred while processing request. |
Note
Please stay tuned for updates on advanced error messages, as this feature is currently under improvement. In case of any issues, refer to the specific error code and description for better understanding and troubleshooting.