API Error Codes
When a request fails for any reason the response will contain an error code and message describing the failure.
API Error | HTTP Status Code | Description |
---|---|---|
FRAUD_ALERT_NOT_FOUND | 404 Not Found | The specified fraud alert was not found. |
VALIDATION_ERROR | 400 Bad Request | The request was malformed, missing a required field or contained an invalid field/value. |
FORBIDDEN | 403 FORBIDDEN | The requested resource does not exist or is not available for the current user. |
INTERNAL_ERROR | 500 Internal Server Error | An unexpected internal error occurred. |
{
"code": "VALIDATION_ERROR",
"message": "Request parameter [from] is missing",
"timestamp": "2022-10-20T18:21:01.531266Z"
}
Updated 11 months ago