Can I use Azure AD Connect to migrate consumer identities that are stored on my on-premises Active Directory to Azure AD B2C?

Marilee Turscak-MSFT 33,706 Reputation points Microsoft Employee
2019-10-30T20:22:37.837+00:00

Can I use Azure AD Connect to migrate consumer identities that are stored on my on-premises Active Directory to Azure AD B2C?

Sourced from FAQ

Microsoft Entra External ID
Microsoft Entra External ID
A modern identity solution for securing access to customer, citizen and partner-facing apps and services. It is the converged platform of Azure AD External Identities B2B and B2C. Replaces Azure Active Directory External Identities.
2,634 questions
0 comments No comments
{count} votes

2 answers

Sort by: Most helpful
  1. Grmacjon-MSFT 15,606 Reputation points
    2019-10-30T20:55:48.507+00:00

    Welcome to the Microsoft Q&A (Preview) platform. Happy to answer your question.

    No, Azure AD Connect is not designed to work with Azure AD B2C. Consider using the Azure AD Graph API for user migration. See the User migration guide for details.

    Sourced from FAQ

    0 comments No comments

  2. Artom Harchenko 1 Reputation point
    2020-01-07T17:44:43.927+00:00

    It is no longer limited to Azure AD Graph API.
    Microsoft Graph API "beta" endpoint now supports creating local and social Azure AD B2C users.
    It would look something like:

    POST https://graph.microsoft.com/beta/users  
      
    {  
      "accountEnabled": true,  
      "displayName": "John Smith",  
      "identities": [  
        {  
          "signInType": "emailAddress",  
          "issuer": "{tenant}.onmicrosoft.com",  
          "issuerAssignedId": "john.smith@example.com"  
        }  
      ],  
      "givenName": "John",  
      "surname": "Smith"  
      "passwordProfile": {  
            "password": "Password123",  
            "forceChangePasswordNextSignIn": false     
       },  
      "passwordPolicies": "DisablePasswordExpiration, DisableStrongPassword"  
    }  
    

    more info here:
    link text

    0 comments No comments