Skip to content

Latest commit

 

History

History
97 lines (65 loc) · 2.48 KB

File metadata and controls

97 lines (65 loc) · 2.48 KB
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

agentIdentityBlueprint: removePassword

Namespace: microsoft.graph

[!INCLUDE beta-disclaimer]

Remove a password from an agentIdentityBlueprint.

Permissions

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]

HTTP request

POST /applications/{id}/microsoft.graph.agentIdentityBlueprint/removePassword

Request headers

Name Description
Authorization Bearer {token}. Required. Learn more about authentication and authorization.
Content-Type application/json. Required.

Request body

Property Type Description
keyId Guid The unique identifier for the password. Required.

Response

If successful, this action returns a 204 No Content response code.

Examples

The following is example shows how to call this API.

Request

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"
}

Response

The following example shows the response.

HTTP/1.1 204 No Content