
RossW.33813 (Customer) asked a question.
I have a requirement to provide access to an Okta tenant from external Entra ID but ensure the level of MFA meets our requirements.
I have configured Entra ID as an External Identity Provider (SAML) and picking up Authn information in the SAML assertion.
Adding user.profile. authmethods.contains("http://schemas.microsoft.com/claims/multipleauthn") to the CA policy ensures MFA has been used but I need to make sure email or sms hasn't been used.
Any guidance on whether the MFA type can be included in the SAML assertion or do I need to look at an OIDC integration and JWT tokens?
Thanks

Hello @RossW.33813 (Customer) Thank you for posting on our Community page!
This should be achievable. You can try the below guidance on this issue:
You need to configure Entra ID to send the Authentication Methods References (AMR). This indicates how the user authenticated.
Source Attribute: Use the transformation or attribute that maps to the authentication method.
Note: Entra's SAML implementation doesn't always expose the granular "phone" vs "software token" via a simple dropdown. You may need to use Conditional Access Authentication Strengths in Entra to ensure the user is forced into a specific bucket before they even get to Okta.
3. Source Attribute: Use the transformation or attribute that maps to the authentication method.
Note: Entra's SAML implementation doesn't always expose the granular "phone" vs "software token" via a simple dropdown. You may need to use Conditional Access Authentication Strengths in Entra to ensure the user is forced into a specific bucket before they even get to Okta.
4. In Okta: Map this incoming claim to a custom attribute in the Okta User Profile (e.g.,
user.ext_amr_methods).
5. Okta Policy: Update your Expression Language check:
user.profile.ext_amr_methods.contains("fido") or !user.profile.ext_amr_methods.contains("sms").
Thank you for reaching out to our Community and have a great day!
--
Help others in the community by liking or hitting Select as Best if this response helped you.
Join the discussion for our Ask Me Anything on January 20, 2026: Adoption of Stronger Authentication MFA. Ask our expert questions.