Manually creating a user in B2C Tenant
1. Connect to Graph Explorer via In-Private using this special link. Notice the tenant ID is referenced, change as needed.
https://developer.microsoft.com/en-us/graph/graph-explorer?tenant=sollishealthdev01.onmicrosoft.com
2. Authenticate using standard Sollis Health account.
3. Post to endpoint: https://graph.microsoft.com/v1.0/users
{
"accountEnabled": true,
"displayName": "sollismemberportal",
"identities": [
{
"signInType": "emailAddress",
"issuer": "sollishealthdev01.onmicrosoft.com",
"issuerAssignedId": "sollismemberportal@gmail.com"
}
],
"givenName": "sollismemberportal",
"mailNickname": "sollismemberportal",
"passwordPolicies": "DisablePasswordExpiration",
"passwordProfile": {
"password": "BLANK",
"forceChangePasswordNextSignIn": false
},
"preferredLanguage": "en-US",
"usageLocation": "US",
"userPrincipalName": "sollismemberportal@sollishealthdev01.onmicrosoft.com"
}