Update filteringPolicyLink

Namespace: microsoft.graph.networkaccess

Important

APIs under the /beta version in Microsoft Graph are subject to change. Use of these APIs in production applications is not supported. To determine whether an API is available in v1.0, use the Version selector.

Modify the properties of an existing filteringPolicyLink object to update its traffic rules.

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.

Permission type Least privileged permissions Higher privileged permissions
Delegated (work or school account) NetworkAccessPolicy.ReadWrite.All Not available.
Delegated (personal Microsoft account) Not supported. Not supported.
Application Not supported. Not supported.

To make changes, the calling user must also be assigned at least one of the following Microsoft Entra roles.

  • Global Secure Access Administrator
  • Security Administrator

HTTP request

PATCH networkAccess/filteringProfiles({filteringProfile_id})/policies({Policy_link_id})

Request headers

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

Request body

In the request body, supply only the values for properties that should be updated. Existing properties that aren't included in the request body maintains 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
state microsoft.graph.networkaccess.status Determines whether the link is enabled or disabled. Inherited from microsoft.graph.networkaccess.policyLink. The possible values are: enabled, disabled.
action microsoft.graph.networkaccess.filteringPolicyAction Represents actions for filtering policies, offering "block" and "allow" options to specify whether to block or allow access based on the policy. The possible values are: block, allow.

Response

If successful, this method returns a 200 OK response code and an updated microsoft.graph.networkaccess.filteringPolicyLink object in the response body.

Examples

Request

The following example shows a request.

PATCH https://graph.microsoft.com/beta/networkaccess/filteringProfiles/9020f79d-71f6-4650-83a9-6b532479578f/policies/d00cf227-8645-4ab8-bd99-a9b455fd83a3
Content-Type: application/json

{
  "@odata.type": "#microsoft.graph.networkaccess.filteringPolicyLink",
  "state": "disabled"
}

Response

The following example shows the response.

HTTP/1.1 204 No Content