Share via

Azure B2C Validation

B Fix 20 Reputation points
2023-07-06T07:37:57.81+00:00
                <TechnicalProfile Id="RESTCRMValidateIdentityNumber">
                    <DisplayName>Validate User IdentityNumber</DisplayName>
                    <Protocol Name="Proprietary"
                              Handler="Web.TPEngine.Providers.RestfulProvider, Web.TPEngine, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null" />
                    <Metadata>
                        <Item Key="ServiceUrl">
                            {Settings:CRMDalBaseUrl}/b2c/customer/validateIdentity</Item>
                        <Item Key="AuthenticationType">ApiKeyHeader</Item>
                        <Item Key="SendClaimsIn">Body</Item>
                    </Metadata>
                    <CryptographicKeys>
                        <Key Id="x-functions-key"
                             StorageReferenceId="B2C_1A_CRMDalHostKey" />
                    </CryptographicKeys>
                    <InputClaims>
                        <InputClaim ClaimTypeReferenceId="identificationNumber" />
                    </InputClaims>
                    <OutputClaims>
                        <OutputClaim ClaimTypeReferenceId="isValidIdentificationNumber"
                                     PartnerClaimType="IsValidIdentity" />
                    </OutputClaims>
                    <UseTechnicalProfileForSessionManagement ReferenceId="SM-AAD" />
                </TechnicalProfile>
Microsoft Security | Microsoft Entra | Microsoft Entra ID

Your answer

Answers can be marked as 'Accepted' by the question author and 'Recommended' by moderators, which helps users know the answer solved the author's problem.