Manage Microsoft Entra ID for customers resources with Microsoft Graph

Using the Microsoft Graph API allows you to manage resources in your Microsoft Entra ID for customers directory. The following Microsoft Graph API operations are supported for the management of resources related to user flows, custom extensions and custom branding. Each link in the following sections targets the corresponding page within the Microsoft Graph API reference for that operation.

Note

You can also programmatically create a Microsoft Entra ID for customers directory itself, along with the corresponding Azure resource linked to an Azure subscription. This functionality isn't exposed through the Microsoft Graph API, but through the Azure REST API. For more information, see Directory Tenants - Create Or Update.

Register a Microsoft Graph API application

In order to use the Microsoft Graph API, you need to register an application in your Microsoft Entra ID for customers tenant. This application will be used to authenticate and authorize your application to call the Microsoft Graph API.

During registration, you'll specify a Redirect URI which redirects the user after authentication with Microsoft Entra External ID. The app registration process also generates a unique identifier known as an Application (client) ID.

The following steps show you how to register your app in the Microsoft Entra admin center:

  1. Sign in to the Microsoft Entra admin center.

  2. If you have access to multiple tenants, use the Settings icon in the top menu to switch to your customer tenant from the Directories + subscriptions menu.

  3. Browse to Identity > Applications > App registrations.

  4. Select + New registration.

  5. In the Register an application page that appears, enter your application's registration information:

    1. In the Name section, enter a meaningful application name that will be displayed to users of the app, for example ciam-client-app.

    2. Under Supported account types, select Accounts in this organizational directory only.

  6. Select Register.

  7. The application's Overview pane is displayed when registration is complete. Record the Directory (tenant) ID and the Application (client) ID to be used in your application source code.

Grant API Access to your application

For your application to access data in Microsoft Graph API, grant the registered application the relevant application permissions. The effective permissions of your application are the full level of privileges implied by the permission. For example, to create, read, update, and delete every user in your Microsoft Entra ID for customers tenant, add the User.ReadWrite.All permission.

  1. Under Manage, select API permissions.

  2. Under Configured permissions, select Add a permission.

  3. Select the Microsoft APIs tab, then select Microsoft Graph.

  4. Select Application permissions.

  5. Expand the appropriate permission group and select the check box of the permission to grant to your management application. For example:

    • User > User.ReadWrite.All: For user migration or user management scenarios.

    • Group > Group.ReadWrite.All: For creating groups, read and update group memberships, and delete groups.

    • AuditLog > AuditLog.Read.All: For reading the directory's audit logs.

    • Policy > Policy.ReadWrite.TrustFramework: For continuous integration/continuous delivery (CI/CD) scenarios. For example, custom policy deployment with Azure Pipelines.

  6. Select Add permissions. As directed, wait a few minutes before proceeding to the next step.

  7. Select Grant admin consent for (your tenant name).

  8. If you are not currently signed-in with Global Administrator account, sign in with an account in your Microsoft Entra ID for customers tenant that's been assigned at least the Cloud application administrator role and then select Grant admin consent for (your tenant name).

  9. Select Refresh, and then verify that "Granted for ..." appears under Status. It might take a few minutes for the permissions to propagate.

After you have registered your application, you need to add a client secret to your application. This client secret will be used to authenticate your application to call the Microsoft Graph API.

The application uses the client secret to prove its identity when it requests for tokens.

  1. From the App registrations page, select the application that you created (such as ciam-client-app) to open its Overview page.

  2. Under Manage, select Certificates & secrets.

  3. Select New client secret.

  4. In the Description box, enter a description for the client secret (for example, ciam app client secret).

  5. Under Expires, select a duration for which the secret is valid (per your organizations security rules), and then select Add.

  6. Record the secret's Value. You'll use this value for configuration in a later step.

Note

The secret value won't be displayed again, and is not retrievable by any means, after you navigate away from the certificates and secrets page, so make sure you record it.
For enhanced security, consider using certificates instead of client secrets.

User flows (Preview)

User flows are used to enable a self-service sign-up experience for users within a Microsoft Entra ID for customers tenant. User flows define the experience the end user sees while signing up, including which identity providers they can use to authenticate, along with which attributes are collected as part of the sign-up process. The sign-up experience for an application is defined by a user flow, and multiple applications can use the same user flow.

Configure pre-built policies for sign-up, sign-in, combined sign-up and sign-in, password reset, and profile update.

Identity providers (Preview)

Get the identity providers that are defined for an external identities self-service sign-up user flow that's represented by an externalUsersSelfServiceSignupEventsFlow object type.

Attributes (Preview)

Company branding

Customers can customize look and feel of sign-in pages which appear when users sign in to tenant-specific apps. Developers can also read the company's branding information and customize their app experience to tailor it specifically for the signed-in user using their company's branding.

You can't change your original configuration's default language. However, companies can add different branding based on locale. For language-specific branding, see the organizationalBrandingLocalization object.

Company branding - localization

Resource that supports managing language-specific branding. While you can't change your original configuration's language, this resource allows you to create a new configuration for a different language.

Note

Delegated permissions for users signing in through user flows cannot be used against delegated permissions for Microsoft Graph API.