Using user-update Graph-API on Azure B2C , i can't understand the create/update identities structure.
{
"displayName": "User Name",
"givenName": "User",
"surname": "Name",
"userType": "Member",
"userPrincipalName": "cpim_uuid@mytenant.onmicrosoft.com",
...
"identities":[
{
"signInType" : "federated",
"issuer": "https://login.company.com/auth/realms/realm-qt
"issuerAssignedId" : "user.name@company.com"
},
{
"signInType" : "userPrincipalName",
"issuer": "mytenant.onmicrosoft.com"
"issuerAssignedId" : "cpim_uuid@mytenant.onmicrosoft.com"
}
]
}
I need to add a record with "signInType" as "federated", and other informations. The example record was automatically created by integration with an external IDP in the first user login.
I would like to create users in Azure B2C before their first login instead.
How?