Hi @Rakshit Shinde (XORIANT CORPORATION) ,
Thanks for reaching out.
In your RelyingParty definition, you can specify a PartnerClaimType
which is the name B2C will use for a claim in the token.
For example, the RelyingParty
definition:
<RelyingParty>
Would generate a token with "sampledata" claim in addition to other claims. Option 2 - ClaimType definition Alternatively, you can specify the same thing in the ClaimType definition itself:
<ClaimType Id="extension_sampledata">
That then automatically applies the appropriate PartnerClaimType
, depending on the protocol.
Hope this will help.
Thanks,
Shweta
Please remember to "Accept Answer" if answer helped you.