Errors
Leverage the power of Gatenox API to create integrations with your company's tools and services.
Gatenox API uses conventional HTTP response codes to indicate the success or failure of an API request.
As a general rule:
Codes in the
2xxrange indicate successCodes in the
4xxrange indicates incorrect or incomplete parameters (e.g. a required parameter was omitted, or an operation failed with a 3rd party, etc.)Codes in the
5xxrange indicates an error with Gatenox's servers.
Gatenox API also outputs an error message and an error code formatted in JSON:
{
"error": {
"code": 404,
"message": "Page not found in this space"
}
}Last updated
Was this helpful?