application: removePassword

Namespace: microsoft.graph

Remove a password from an application.

This API is supported in the following national cloud deployments.

Global service US Government L4 US Government L5 (DOD) China operated by 21Vianet

Permissions

One of the following permissions is required to call this API. To learn more, including how to choose permissions, see Permissions.

Permission type Permissions (from least to most privileged)
Delegated (work or school account) Application.ReadWrite.All
Delegated (personal Microsoft account) Application.ReadWrite.All
Application Application.ReadWrite.OwnedBy, Application.ReadWrite.All

HTTP request

You can address the application using either its id or appId. id and appId are referred to as the Object ID and Application (Client) ID, respectively, in app registrations in the Microsoft Entra admin center.

POST /applications/{id}/removePassword
POST /applications(appId='{appId}')/removePassword

Request headers

Name Description
Authorization Bearer {token}. Required.
Content-Type application/json. Required.

Request body

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

Response

If successful, this method returns a 204 No content response code.

Examples

The following is example shows how to call this API.

Request

The following is an example of the request.

POST https://graph.microsoft.com/v1.0/applications/{id}/removePassword
Content-type: application/json

{
    "keyId": "f0b0b335-1d71-4883-8f98-567911bfdca6"
}

Response

The following is an example of the response.

HTTP/1.1 204 No Content