How to skip self-asserted page

Yashwanth Yenugu 116 Reputation points
2020-04-28T14:48:49.037+00:00

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>
Microsoft Entra External ID
Microsoft Entra External ID
A modern identity solution for securing access to customer, citizen and partner-facing apps and services. It is the converged platform of Azure AD External Identities B2B and B2C. Replaces Azure Active Directory External Identities.
2,633 questions
0 comments No comments
{count} votes

Accepted answer
  1. AmanpreetSingh-MSFT 56,306 Reputation points
    2020-04-28T16:06:30.73+00:00

    @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.

    1 person found this answer helpful.
    0 comments No comments

1 additional answer

Sort by: Most helpful
  1. Pedro Miguel Gonçalves 41 Reputation points
    2020-04-28T16:03:02.58+00:00

    When remove step 4, you need reorder nexts steps 5->4, 6->5

    Old:

    7862-bemlzj1sao.png

    New:
    7804-wlktznuapl.png

    0 comments No comments