Skip to main content
The API uses standard HTTP response codes to indicate the success or failure of requests. Responses with 2xx HTTP code are successful. We return 4xx and 5xx for errors.

Error Structure

An error response will always return the following information:
  1. The HTTP status code.
  2. An error message.
  3. An error status.
  4. Additional information describing the source of the error either as errors array (for validation issues) or data object.
401 unauthorized errors do not return any additional information.
{
    "message": "account_number is required!",
    "status": "error",
    "errors": [
        {
            "field": "account_number",
            "message": "account_number is required!"
        },
        {
            "field": "issuer",
            "message": "issuer is required!"
        }
    ]
}
Contact our support team for help with persistent errors.