Voiso uses standard HTTP response codes to convey the outcome of an API request precisely:
Tip: Consult the endpoint documentation for a more granular understanding of HTTP response codes.
Code | Text | Description |
---|---|---|
200 | OK | The request is successfully completed. |
201 | Created | The requested resource is successfully created. |
204 | No Content | The request is successfully completed, and there is no content in response. |
301 | Moved Permanently | The requested resource is moved successfully. |
400 | Bad request | The request could not be completed due to a client-related error. |
401 | Unauthorised | The request is unsuccessful as it lacks valid authentication credentials for the resource. |
403 | Access forbidden | The user does not have the required permissions assigned to their role. |
404 | Not Found | The requested resource or endpoint is not found. |
405 | Method Not Allowed | The requested resource is found, but it does not support the HTTP method used. |
422 | Body params are invalid | One or more of the request body parameters are missing, are not in the correct format, or are specifying an object that does not exist. |
424 | Unprocessable Entity | The request syntax is correct, but there are validation errors. |
429 | Too Many Requests | The rate limit is exceeded. |
500 | Internal Server Error | Server encountered an unexpected condition. |
Was this page helpful?