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

    Interface EnrollOobOptions

    Enroll OOB authenticator (SMS/Voice/Push/Email).

    interface EnrollOobOptions {
        authenticatorTypes: ["oob"];
        email?: string;
        mfaToken: string;
        oobChannels: ("email" | "sms" | "voice" | "auth0")[];
        phoneNumber?: string;
    }
    Index

    Properties

    authenticatorTypes: ["oob"]

    Authenticator types to enroll

    email?: string

    Email address (optional for email channel - uses user's email if not provided)

    mfaToken: string

    Encrypted MFA token

    oobChannels: ("email" | "sms" | "voice" | "auth0")[]

    OOB channels (sms, voice, auth0, email)

    phoneNumber?: string

    Phone number in E.164 format (required for sms/voice)