Azure Active Directory External Identities
An Azure service that is used to secure and manage customer and partner identities beyond organizational boundaries.
2,210 questions
This browser is no longer supported.
Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.
B2C is throwing validation error if I remove step 4 of user journey, but I want to skip showing this page for first time logged in users.
<OrchestrationStep Order="4" Type="ClaimsExchange">
<Preconditions>
<Precondition Type="ClaimsExist" ExecuteActionsIf="true">
<Value>objectId</Value>
<Action>SkipThisOrchestrationStep</Action>
</Precondition>
</Preconditions>
<ClaimsExchanges>
<ClaimsExchange Id="SelfAsserted-Social" TechnicalProfileReferenceId="SelfAsserted-Social" />
</ClaimsExchanges>
</OrchestrationStep>
@Yashwanth Yenugu Do not remove OrchestrationStep 4, just change ExecuteActionsIf="true" to "false".
-----------------------------------------------------------------------------------------------------------
Please "Accept as answer" wherever the information provided helps you to help others in the community.
When remove step 4, you need reorder nexts steps 5->4, 6->5
Old:
New: