With the Sponsor functionality available (Configuring Sponsors for Guest User ( B2B) and External Member (B2B)) has anyone successfully aggregated the sponsors attribute?
When I attempt to aggregate, I get a JSON blob returned:
{
"displayName":"Bloggs, Joe",
"id":"123456-1234-1234-1234-123456789012"
}
Provisioning works correctly by sending the UPN of the Sponsor. However Attribute Sync repeatedly triggers as the aggregated value is obviously different.
A separate Graph API call with the same permissions returns a full record:
"sponsors": [
{
"@odata.type": "#microsoft.graph.user",
"userPrincipalName": "joe.bloggs@test.onmicrosoft.com",
"displayName": "Bloggs, Joe",
"id": "123456-1234-1234-1234-123456789012"
}
]