Hi,
In Azure AD B2C the Sign up process with Phone is expecting the emailId during the sign up process.
Our use case is that we just need to ask the user only Phone number during the sign up process. Is there a way that we can avoid asking the emailid from the user during Sign up process with Phone?
I tried couple of options like by removing the email check step from the User Journey as shown below:
<OrchestrationStep Order="3" Type="ClaimsExchange">
<Preconditions>
<Precondition Type="ClaimsExist" ExecuteActionsIf="true">
<Value>isLocalAccountSignIn</Value>
<Action>SkipThisOrchestrationStep</Action>
</Precondition>
</Preconditions>
<ClaimsExchanges>
<ClaimsExchange Id="SignUpWithPhone_CollectEmailAddress" TechnicalProfileReferenceId="LocalAccountSignUpWithLogonPhoneNumber_CollectEmailAddress" />
</ClaimsExchanges>
</OrchestrationStep>
But none of the options are work. Appreciate a quick response on this issue.
Thanks,
SathKaal