Hello @Lance Klinger , the recommended way to create B2C users is trough user flows or custom policies, however you might try doing it through MS Graph:
HTTP POST https://graph.microsoft.com/beta/users
{
"displayName": "<SOME VALUE>",
"identities": [
{
"issuer": "https://login.microsoftonline.com/<FEDERATED AZURE AD TENANT ID>/v2.0",
"issuerAssignedId": "<FEDERATED AZURE AD USER OBJECT ID>",
"signInType": "federated"
}
]
}
Let us know if this answer was helpful to you or if you need additional assistance. If it was helpful, please remember to accept it and complete the quality survey so that others in the community with similar questions can more easily find a rated solution.