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 CodeMessageDescription
200OKThe request succeeded, and the resource is available.
201CreatedA new resource was successfully created (often used after a POST request).
202AcceptedThe request has been accepted for processing, but the processing has not been finished yet.
204No ContentThe 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 CodeMessageDescription
400Bad RequestThe server cannot process the request due to malformed syntax or invalid parameters.
401UnauthorizedThe client needs to authenticate or provide valid credentials.
403ForbiddenThe user doesn’t have permission to perform the request.
404Not FoundThe requested resource does not exist on the server.
409ConflictThis response is sent when a request conflicts with the current state of the server.
429Too Many RequestsThe 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 CodeMessageDescription
500Internal Server ErrorA generic error occurred on the server (often due to misconfiguration or unexpected issues).
503Service UnavailableThe server is temporarily unable to handle requests (e.g., during maintenance or overload).
504Gateway TimeoutThe 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.

📘

NOTE

This error list is frequently updated. Please visit this page time and again to ensure that you view the most recent error list.

API Error CodeDescriptionHTTP Status Code
1Placeholder400
2Placeholder400