Pre-built UI Integration of MFA

The UI component handles MFA enrollment and authentication automatically, honoring both the Organization's MFA Policy and any optional Member enrollment.

You can adjust the defaults for which MFA options are shown and the order they are presented to the end user through the mfaProductInclude and the mfaProductOrder arrays in the UI config.

var organizationConfig = {
    authFlowType: "Organization",
    mfaProductInclude: ['totp', 'smsOtp'],
    mfaProductOrder: ['totp', 'smsOtp'],
    ...,
  };

However, it is important to note that the Organization's allowed_mfa_methods and the Member's current MFA enrollment options will take precedent over the UI config.

The below sequence outlines the flow that will occur after primary authentication, when an Organization's MFA Policy is REQUIRED_FOR_ALL but the Member is not currently enrolled in MFA.

Pre-built UI integration of required MFA enrollment

If neither the Organization or UI config restrict the MFA methods available, the user will be presented with options, ordered according to the mfaProductOrder array.

Pre-built UI when both TOTP and SMS allowedBoth TOTP and SMS OTP allowed by Organization and UI config

If the Organization restricts MFA methods, the UI will surface that option -- even if it is not explicitly included in the UI config.

Pre-built UI when only TOTP allowedOnly TOTP allowed

If the Organization does not restrict MFA methods and mfaProductInclude is explicitly passed in the UI config, the user will only be shown the options allowed by the config.

Pre-built UI when only TOTP allowedOnly SMS OTP allowed