Errors

Naxai uses conventional HTTP response codes to indicate the success or failure of an API request.

In general: Codes in the 2xx range indicate success. Codes in the 4xx range indicate an error that failed given the information provided (e.g., a required parameter was omitted, etc.). Codes in the 5xx range indicate an error with Naxai's servers (these are rare).

Some 4xx errors that could be handled programmatically include an error code briefly explaining the reported error.

CodeError
200Ok
Everything worked as expected.
400Bad Request
The request was unacceptable, often due to missing a required parameter.
401Unauthorized
No valid credentials were provided.
403 Forbidden
The credentials don't have permission to perform the request.
404Not Found
The requested resource doesn't exist.
429Too Many Requests
Too many requests hit the API too quickly.
We recommend an exponential backoff of your requests.
500, 502, 503, 504Server Errors
Something went wrong on Naxai's end. (These are rare.)

Error Codes

Some Errors include an error code—a short string with a brief explanation. These codes play a role in our recommended error-handling techniques.

Below is a list of possible error codes, along with additional information about how to resolve them.