I am trying to supply a username to a third party application that will occasionally be different than the users SAM.
I've got it working on the ID token by defining it in OIDC-based sign-on. The recipient of the token needs the claim to be in the Access Token and not ID token.
I've tried adding this (and other variations such as user.extensionattribute15) to the manifest:
"optionalClaims": {
"accessToken": [
{
"additionalProperties": [],
"essential": false,
"name": "extensionAttribute15",
"source": "user"
}
],
"idToken": [],
"saml2Token": []
},
but no luck, anyone who could point me in the right direction?
I've tried a bunch of different formats, such as user.extensionattribute15 with source as null and user etc.









