Status and Error Codes
In-Depth Look at Status and Error Codes
HTTPS Status Code
HTTP status codes (also called response status codes) are three-digit responses from the server to the browser-side request.
Verto API uses below categorization of HTTP status codes to indicate the user of the API about the success or failure of an API request.
2xx (Success):
These status codes indicate that the client’s request was successfully received, understood, and processed by the server.
| HTTP Code | Message | Description |
|---|---|---|
| 200 | OK | The request succeeded, and the resource is available. |
| 201 | Created | A new resource was successfully created (often used after a POST request). |
| 202 | Accepted | The request has been accepted for processing, but the processing has not been finished yet. |
| 204 | No Content | The request was successful, but there is no content to return (commonly used for DELETE requests). |
4xx (Client Error):
These codes indicate that the client’s request contains an error or cannot be fulfilled due to client-side issues.
| HTTP Code | Message | Description |
|---|---|---|
| 400 | Bad Request | The server cannot process the request due to malformed syntax or invalid parameters. |
| 401 | Unauthorized | The client needs to authenticate or provide valid credentials. |
| 403 | Forbidden | The user doesn’t have permission to perform the request. |
| 404 | Not Found | The requested resource does not exist on the server. |
| 409 | Conflict | This response is sent when a request conflicts with the current state of the server. |
| 429 | Too Many Requests | The client has sent too many requests in a given amount of time. |
5xx (Server Error):
These codes indicate that the server encountered an error while processing the request.
| HTTP Code | Message | Description |
|---|---|---|
| 500 | Internal Server Error | A generic error occurred on the server (often due to misconfiguration or unexpected issues). |
| 503 | Service Unavailable | The server is temporarily unable to handle requests (e.g., during maintenance or overload). |
| 504 | Gateway Timeout | The server is waiting too long to respond from another server and “timing out.” |
API Error Codes
The following table lists the API error codes, with their corresponding HTTP status codes.
NOTEThis error list is frequently updated. Please visit this page time and again to ensure that you view the most recent error list.
| API Error Code | Description | HTTP Status Code |
|---|---|---|
| 1 | Placeholder | 400 |
| 2 | Placeholder | 400 |
Updated over 1 year ago
