| title | Create agentIdentityBlueprint |
|---|---|
| description | Create a new agent identity blueprint. |
| author | zallison22 |
| ms.date | 10/27/2025 |
| ms.localizationpriority | medium |
| ms.subservice | entra-agent-id |
| doc_type | apiPageType |
Namespace: microsoft.graph
[!INCLUDE beta-disclaimer]
Create a new agent identity blueprint object.
Choose the permission or permissions marked as least privileged for this API. Use a higher privileged permission or permissions only if your app requires it. For details about delegated and application permissions, see Permission types. To learn more about these permissions, see the permissions reference.
[!INCLUDE permissions-table]
[!INCLUDE rbac-agentid-apis-write]
POST /applications/microsoft.graph.agentIdentityBlueprint| Name | Description |
|---|---|
| Authorization | Bearer {token}. Required. Learn more about authentication and authorization. |
| Content-Type | application/json. Required. |
In the request body, supply a JSON representation of agent identity blueprint object. You must specify the displayName property and sponsors relationship.
If successful, this method returns 201 Created response code and an agent identity blueprint object in the response body.
The following example shows a request.
POST https://graph.microsoft.com/beta/applications/microsoft.graph.agentIdentityBlueprint
Content-type: application/json
{
"displayName": "Display name",
"sponsors@odata.bind": [
"https://graph.microsoft.com/beta/users/e64405d7-f156-4ce1-b1f5-b0d801c367f3"
]
}The following example shows the response.
Note: The response object shown here might be shortened for readability.
HTTP/1.1 201 Created
Content-type: application/json
{
"@odata.context": "https://graph.microsoft.com/beta/$metadata#applications/microsoft.graph.agentIdentityBlueprint/$entity",
"id": "03ef14b0-ca33-4840-8f4f-d6e91916010e",
"appId": "00001111-aaaa-2222-bbbb-3333cccc4444",
"identifierUris": [],
"createdDateTime": "2019-09-17T19:10:35.2742618Z",
"displayName": "Display name",
"publisherDomain": "contoso.com",
"requiredResourceAccess": [],
"signInAudience": "AzureADMyOrg"
}