Update appManagementPolicy

Namespace: microsoft.graph

Update an appManagementPolicy object.

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) Policy.ReadWrite.ApplicationConfiguration
Delegated (personal Microsoft account) Not supported.
Application Policy.ReadWrite.ApplicationConfiguration

HTTP request

PATCH /policies/appManagementPolicies/{id}

Request headers

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

Request body

In the request body, supply only the values for properties that should be updated. Existing properties that are not included in the request body will maintain their previous values or be recalculated based on changes to other property values.

The following table specifies the properties that can be updated.

Property Type Description
displayName String The display name of the policy. Inherited from policyBase.
description String The description of the policy. Inherited from policyBase.
isEnabled Boolean Denotes whether the policy is enabled.
restrictions appManagementConfiguration Restrictions that apply to an application or service principal object.

Response

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

Examples

Request

The following is an example of the request.

PATCH https://graph.microsoft.com/v1.0/policies/appManagementPolicies/{id}

{
    "isEnabled": false
}

Response

The following is an example of the response.

HTTP/1.1 204 No Content