Auth0 Universal Components
    Preparing search index...

    Interface MFAControllerInterface

    Interface for MFA controller.

    interface MFAControllerInterface {
        confirmEnrollment(
            factorType: string,
            authSession: string,
            authenticationMethodId: string,
            options: ConfirmEnrollmentOptions,
        ): Promise<VerifyAuthenticationMethodResponseContent>;
        deleteFactor(authenticatorId: string): Promise<void>;
        enrollFactor(
            factorType: string,
            options?: ArbitraryObject,
        ): Promise<CreateAuthenticationMethodResponseContent>;
        fetchFactors(onlyActive?: boolean): Promise<ListFactorsResponseContent>;
    }
    Index

    Methods