Skip to main content

SCA Authentication Event Attempt Outsourced Request

Outsourced Strong Customer Authentication (SCA) authentication event attempt request, including details about the authentication process.

walletOperationIdstringrequired
verification objectrequired

Verification details associated with the SCA authentication event attempt.

methodSCA Authentication Event Attempt Verification Method (string)required

Method used for verifying the SCA authentication event attempt.

  • PASSWORD - A secret combination of characters, typically chosen by the user, used to authenticate their identity.
  • PIN - A numeric code, typically six digits, used to authenticate the user's identity.
  • PASSKEYS - A set of predefined keys or a pattern chosen by the user to authenticate their identity.
  • OTP - One-Time Password sent via SMS, email, or authenticator application to the user's registered device.
  • BIOMETRIC - Authentication based on unique physical characteristics of the user, such as fingerprint, facial recognition, or iris scan.

Possible values: [PASSWORD, PIN, PASSKEYS, OTP, BIOMETRIC]

Example: OTP
channelSCA Authentication Event Attempt Verification Channel (string)

Channel used to send the verification method to the user.

  • SMS - Verification method sent via SMS to the user's registered device.
  • EMAIL - Verification method sent via email to the user's registered address.
  • AUTHENTICATOR - Verification method generated by an authenticator application installed on the user's device.
  • PUSH_NOTIFICATION - Verification method sent via the user's mobile device prompting them to approve or deny the authentication request.

Possible values: [SMS, EMAIL, AUTHENTICATOR, PUSH_NOTIFICATION]

Example: SMS
statusSCA Authentication Event Attempt Status (string)required

Status of the SCA authentication event attempt.

  • VERIFIED - The SCA authentication process has been successfully completed, and the user's identity has been verified.
  • REJECTED - The SCA authentication process has been rejected by the user, preventing the finalization of the wallet operation.
  • FAILED - The SCA authentication process has failed, preventing the finalization of the wallet operation. Please refer to statusReason for further information.

Possible values: [VERIFIED, REJECTED, FAILED]

Example: FAILED
statusReasonstring

Possible values: non-empty and <= 100 characters

SCA Authentication Event Attempt Outsourced Request
{
"walletOperationId": "string",
"verification": {
"method": "OTP",
"channel": "SMS"
},
"status": "FAILED",
"statusReason": "string"
}