Azure AD B2C and Microsoft Graph
Microsoft Graph provides functionality to manage your Azure AD B2C resources. It provides several operations that you can use to create and manage the Azure B2C tenant, create users, and manage identity providers, user flows, and custom policies.
Before you can use the Microsoft Graph API to access the Azure AD B2C tenant, you first need to register an application inside Azure AD B2C that grants the permissions.
Note
Registering the application to grant permissions to Microsoft Graph is beyond the scope of this book. For more information on how to register this, you can refer to the following: https://docs.microsoft.com/en-us/azure/active-directory-b2c/microsoft-graph-get-started?tabs=app-reg-ga#register-management-application.
To interact with your Azure B2C tenant from the Microsoft Graph API, there is support for the following:
- User management: You can retrieve a list of users, create a user, update, and delete a user.
- Applications...