Created
January 16, 2022 05:18
-
-
Save mfcollins3/04ab248b1e791aa8fdb065679362d10e to your computer and use it in GitHub Desktop.
AAD-UserReadUsingObjectId
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<TechnicalProfile Id="AAD-UserReadUsingObjectId"> | |
<Metadata> | |
<Item Key="Operation">Read</Item> | |
<Item Key="RaiseErrorIfClaimsPrincipalDoesNotExist">true</Item> | |
</Metadata> | |
<IncludeInSso>false</IncludeInSso> | |
<InputClaims> | |
<InputClaim ClaimTypeReferenceId="objectId" Required="true" /> | |
</InputClaims> | |
<OutputClaims> | |
<!-- Optional claims --> | |
<OutputClaim ClaimTypeReferenceId="signInNames.emailAddress" /> | |
<OutputClaim ClaimTypeReferenceId="displayName" /> | |
<OutputClaim ClaimTypeReferenceId="otherMails" /> | |
<OutputClaim ClaimTypeReferenceId="givenName" /> | |
<OutputClaim ClaimTypeReferenceId="surname" /> | |
</OutputClaims> | |
<IncludeTechnicalProfile ReferenceId="AAD-Common" /> | |
</TechnicalProfile> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment