@auth0/nextjs-auth0 - v4.15.0
    Preparing search index...

    Interface VerifyMfaWithOobOptions

    Verification with OOB code sent via SMS/Email/Push.

    // After calling challenge()
    const challengeResponse = await mfa.challenge({
    mfaToken,
    challengeType: 'oob',
    authenticatorId: 'sms|dev_abc123'
    });

    // User receives code "543210"
    await mfa.verify({
    mfaToken,
    oobCode: challengeResponse.oobCode,
    bindingCode: '543210'
    });
    interface VerifyMfaWithOobOptions {
        bindingCode: string;
        mfaToken: string;
        oobCode: string;
    }

    Hierarchy (View Summary)

    Index

    Properties

    bindingCode: string
    mfaToken: string

    Encrypted MFA token

    oobCode: string