Microsoft Entra Agent ID
Architecture

Plan Agent Identity Architecture

In brief

The documentation now explains that agents should use an agent identity blueprint and the `#Microsoft.Graph.AgentIdentity` object, rather than standard app-registration APIs. It also lists supported creation channels, roles, permissions, and .NET usage.

What Entra admins need to know

Update provisioning guidance and automation to use agent identity blueprints and supported channels; do not create agents through application-registration APIs.

This editorial summary was generated by AI from the documentation changes. Verify important details in the full Microsoft Learn article.

Documentation change

The comparison below shows only the changed extract. Use the full-page view for complete context.

  • Identity governance processes such as joiner-mover-leaver workflows, access packages, and access reviews aren't designed for agent lifecycle patterns and might incorrectly remove agent access.
  • Your agents would appear in the Global Address List, Teams, and SharePoint alongside human employees, making it harder to distinguish AI agents from people.

Don't register an app for your agent

If you're used to creating workload identities, your instinct might be to create an app registration or service principal for your agent — for example, by running az ad app create, New-MgApplication, New-AzADApplication, or a POST /applications Microsoft Graph request. Don't do this for AI agents. An identity created this way is a standard application: it has no sponsor, no agent-specific audit entries, and no blueprint-managed lifecycle. Microsoft Entra doesn't govern it as an agent, and labeling it an "agent identity" doesn't make it one.

Instead, create an agent identity blueprint and then create agent identities from it. Agent identities are a distinct Microsoft Entra object type (#Microsoft.Graph.AgentIdentity) created through the blueprint, not through the application registration APIs.

Instead of this (standard app registration)Do this (agent identity)
az ad app createCreate an agent identity blueprint, then create agent identities from it
New-MgApplication or New-AzADApplicationUse a supported creation channel with the Agent ID Developer or Agent ID Administrator role
POST https://graph.microsoft.com/v1.0/applicationsGrant AgentIdentityBlueprint.Create, then create the blueprint and agent identities

In .NET, use the Microsoft.Identity.Web.AgentIdentities package: call builder.Services.AddAgentIdentities(), then acquire tokens with WithAgentIdentity(...). See Call custom APIs from an agent.

For a full comparison, see Agent identities, service principals, and applications.

Step 2: Choose an operation pattern

An agent's operation pattern determines how it acquires tokens and what context it acts in. Microsoft Entra Agent ID supports two primary patterns: autonomous and interactive.

Daily Entra.News

Get daily email updates

Get a concise summary of the latest Microsoft Entra updates delivered straight to your inbox.

Loading the secure signup form…