Authentication and On-Demand MFA API HTTP Status Codes

The Authentication and On-Demand Multi-Factor Authentication (MFA) APIs for Oracle Identity Cloud Service are REST compliant and use standard HTTP response status codes to indicate failure.

This table describes the different status codes and the use cases in which these status codes are sent.

See the Status Code Definitions section of the Hypertext Transfer Protocol -- HTTP/1.1.

HTTP Status Code Use Case Sample JSON Response Body
400 Bad Request

This code indicates a bad request. This code is sent if any attribute is supplied with an invalid value in the payload, which signifies syntax issues.

{
    "status": "failed",
    "ecid": "Suwmo0F0000000000",
    "cause":
            [
                {
                    "message": "Invalid value [EMAILS] for attribute authFactor. One of [USERNAME_PASSWORD,PUSH,TOTP,EMAIL,SMS,BYPASSCODE, SECURITY_QUESTIONS] was expected.",
                    "code": "AUTH-1111"
                }
            ],
    "requestState": "bnJ7Qkz2Vff0RNuxwcJQwnaQFA"
}
401 Unauthorized

This code indicates unauthorized access. This is used when the requestState is invalid or expired, or the ID of the otpCode provided during authentication is invalid.

{
    "status": "failed",
    "ecid": "3YkZh1H0000000000",
    "cause":
            [
                {
                    "message": "You entered an incorrect user name or password.",
                    "code": "AUTH-3001"
                }
            ],
    "requestState": "b0EYFnXpo"
}
422

This code is used when the request is syntactically correct, but semantically wrong. 422 means the request is an unprocessable entity. For example, when the request is missing the op attribute, which is mandatory for a given action.

{
    "status": "failed",
    "ecid": "KIN^r0J0000000000",
    "nextOp": ["credSubmit"],
    "cause":
            [
                {
                    "message": "Your input request is missing the op attribute, which is mandatory.",
                    "code": "AUTH-1111"
                }
            ],
    "requestState": "b0EYFnLpFWEihmJ6btqTXpo",
    "USERNAME_PASSWORD":
            {
                "credentials": ["username", "password"]
            },
    "nextAuthFactors": ["USERNAME_PASSWORD"]
}
500 Internal Server Error

This code indicates an internal server error. When this error occurs, the response contains the ecId and the cause so that the client can contact the administrator for further details.