Share via

External ID in an external tenant: How to register multiple MFA methods

TU2 10 Reputation points
2026-05-27T13:57:06.2666667+00:00

I uses the native authentication in my SPA app. When users encounter the AuthMethodRegistrationRequiredState during login, they can use the following process to register an MFA method.

AuthMethodRegistrationRequiredState.challengeAuthMethodAuthMethodVerificationRequiredState.submitChallengeAuthMethodRegistrationCompletedState

The user is already logged in at this point. My question is: how to register an additional MFA method after login?

Microsoft Security | Microsoft Entra | Microsoft Entra External ID

1 answer

Sort by: Most helpful
  1. AI answer

    2026-05-27T13:57:19.92+00:00

    For native authentication in an External ID (CIAM) tenant, registering a strong/MFA method is always driven by the native auth flows and APIs. At least one strong authentication method (email or SMS one-time passcode) is required for MFA-enabled users, but additional methods can also be registered by invoking the same “strong authentication method registration” flow again after sign-in.

    Conceptually, registering an additional MFA method after the user is already signed in works the same way as when AuthMethodRegistrationRequiredState is triggered during sign-in:

    1. Start a strong authentication method registration flow from the signed-in session (client-side UX decision).
    2. Call the native authentication register strong authentication method APIs.
    3. Complete the challenge with /register/v1.0/continue using the OTP from the new email/phone.
    4. On success, the new method is added to the user’s registered strong methods and becomes available for MFA challenges.

    From the API perspective, the key step for completing registration is the continue call:

    POST https://{tenant_subdomain}.ciamlogin.com/{tenant_subdomain}.onmicrosoft.com/register/v1.0/continue
      ?continuation_token=...
      &client_id=...
      &grant_type=oob
      &oob={otp_code}
    

    To support registering additional methods after login in a SPA:

    1. Ensure the app is configured with the strong authentication method registration capabilities (as in the Angular/React tutorials).
    2. Provide a “Manage security / Add MFA method” page in the SPA that:
      • Uses the native auth JS SDK to initiate a register-strong-method flow for the signed-in user (email or SMS OTP).
      • Guides the user through entering the new email/phone and verifying the OTP.
    3. Handle registration errors (for example, provider_blocked_by_admin or provider_blocked_by_rep) as documented in the native auth API reference.

    In other words, to add another MFA method after login, invoke the same strong authentication registration flow (via native auth SDK + /register endpoints) from an authenticated context instead of waiting for AuthMethodRegistrationRequiredState during sign-in.


    References:

    AI-generated content may be incorrect. Read our transparency notes for more information.

    Was this answer helpful?

Your answer

Answers can be marked as 'Accepted' by the question author and 'Recommended' by moderators, which helps users know the answer solved the author's problem.