| title | agentIdentityBlueprint: removePassword |
|---|---|
| description | Remove a password from an 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]
Remove a password from an agentIdentityBlueprint.
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/{id}/microsoft.graph.agentIdentityBlueprint/removePassword| Name | Description |
|---|---|
| Authorization | Bearer {token}. Required. Learn more about authentication and authorization. |
| Content-Type | application/json. Required. |
| Property | Type | Description |
|---|---|---|
| keyId | Guid | The unique identifier for the password. Required. |
If successful, this action returns a 204 No Content response code.
The following is example shows how to call this API.
The following example shows a request.
POST https://graph.microsoft.com/beta/applications/{id}/microsoft.graph.agentIdentityBlueprint/removePassword
Content-type: application/json
{
"keyId": "f0b0b335-1d71-4883-8f98-567911bfdca6"
}The following example shows the response.
HTTP/1.1 204 No Content