Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
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. Use this operation to update any derived type, including:
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. |
Important
In delegated scenarios with work or school accounts, the signed-in user must be assigned a supported Microsoft Entra role or a custom role with a supported role permission. The following least privileged roles are supported for this operation.
- 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 to update. Existing properties that aren't included in the request body maintain their previous values or are 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
Example 1: Update a filteringPolicyLink
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
Example 2: Update a tlsInspectionPolicyLink
Request
The following example shows a request.
PATCH https://graph.microsoft.com/beta/networkAccess/filteringProfiles/d734d2de-f2df-4b4a-8c4c-5111f8878275/policies/70405a6c-b823-c521-c981-de9d08a21f8f
Content-Type: application/json
{
"state": "disabled"
}
Response
The following example shows the response.
HTTP/1.1 204 No Content