interface ConfirmSignInWithTOTPCode {
    signInStep: "CONFIRM_SIGN_IN_WITH_TOTP_CODE";
}

Properties

Properties

signInStep: "CONFIRM_SIGN_IN_WITH_TOTP_CODE"

Auth step requires user to use TOTP as multifactor authentication by retriving an OTP code from authenticator app.

Example

// Code retrieved from authenticator app
const otpCode = '112233';
await confirmSignIn({challengeResponse: otpCode});