dreamflasher
dreamflasher

Reputation: 1531

Add phone call only MFA to custom policy

I have an existing custom policy (https://github.com/azure-ad-b2c/samples/blob/master/policies/passwordless-email/) and I want to add phone MFA to this. I found https://github.com/azure-ad-b2c/samples/tree/master/policies/mfa-email-or-phone but this allows email or phone, there is also https://github.com/Azure-Samples/active-directory-b2c-custom-policy-starterpack/tree/master/SocialAndLocalAccountsWithMfa and https://learn.microsoft.com/en-us/azure/active-directory-b2c/multi-factor-auth-technical-profile.

Is there any way to force a phone call as mfa? (don't allow sms)

Upvotes: 0

Views: 611

Answers (1)

rbrayb
rbrayb

Reputation: 46720

You need to use this setting:

"setting.authenticationMode"

"The method to validate the phone number. Possible values: sms, phone, or mixed (default)"

Upvotes: 1

Related Questions