Update deviceManagementExchangeOnPremisesPolicy
Namespace: microsoft.graph
Important: Microsoft Graph APIs under the /beta version are subject to change; production use is not supported.
Note: The Microsoft Graph API for Intune requires an active Intune license for the tenant.
Update the properties of a deviceManagementExchangeOnPremisesPolicy object.
This API is available 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) | DeviceManagementServiceConfig.ReadWrite.All, DeviceManagementConfiguration.ReadWrite.All |
Delegated (personal Microsoft account) | Not supported. |
Application | DeviceManagementServiceConfig.ReadWrite.All, DeviceManagementConfiguration.ReadWrite.All |
HTTP Request
PATCH /deviceManagement/exchangeOnPremisesPolicy
PATCH /deviceManagement/exchangeOnPremisesPolicies/{deviceManagementExchangeOnPremisesPolicyId}
Request headers
Header | Value |
---|---|
Authorization | Bearer {token}. Required. Learn more about authentication and authorization. |
Accept | application/json |
Request body
In the request body, supply a JSON representation for the deviceManagementExchangeOnPremisesPolicy object.
The following table shows the properties that are required when you create the deviceManagementExchangeOnPremisesPolicy.
Property | Type | Description |
---|---|---|
id | String | |
notificationContent | Binary | Notification text that will be sent to users quarantined by this policy. This is UTF8 encoded byte array HTML. |
defaultAccessLevel | deviceManagementExchangeAccessLevel | Default access state in Exchange. This rule applies globally to the entire Exchange organization. Possible values are: none , allow , block , quarantine . |
accessRules | deviceManagementExchangeAccessRule collection | The list of device access rules in Exchange. The access rules apply globally to the entire Exchange organization |
knownDeviceClasses | deviceManagementExchangeDeviceClass collection | The list of device classes known to Exchange |
Response
If successful, this method returns a 200 OK
response code and an updated deviceManagementExchangeOnPremisesPolicy object in the response body.
Example
Request
Here is an example of the request.
PATCH https://graph.microsoft.com/beta/deviceManagement/exchangeOnPremisesPolicy
Content-type: application/json
Content-length: 665
{
"@odata.type": "#microsoft.graph.deviceManagementExchangeOnPremisesPolicy",
"notificationContent": "bm90aWZpY2F0aW9uQ29udGVudA==",
"defaultAccessLevel": "allow",
"accessRules": [
{
"@odata.type": "microsoft.graph.deviceManagementExchangeAccessRule",
"deviceClass": {
"@odata.type": "microsoft.graph.deviceManagementExchangeDeviceClass",
"name": "Name value",
"type": "model"
},
"accessLevel": "allow"
}
],
"knownDeviceClasses": [
{
"@odata.type": "microsoft.graph.deviceManagementExchangeDeviceClass",
"name": "Name value",
"type": "model"
}
]
}
Response
Here is an example of the response. Note: The response object shown here may be truncated for brevity. All of the properties will be returned from an actual call.
HTTP/1.1 200 OK
Content-Type: application/json
Content-Length: 714
{
"@odata.type": "#microsoft.graph.deviceManagementExchangeOnPremisesPolicy",
"id": "16e76336-6336-16e7-3663-e7163663e716",
"notificationContent": "bm90aWZpY2F0aW9uQ29udGVudA==",
"defaultAccessLevel": "allow",
"accessRules": [
{
"@odata.type": "microsoft.graph.deviceManagementExchangeAccessRule",
"deviceClass": {
"@odata.type": "microsoft.graph.deviceManagementExchangeDeviceClass",
"name": "Name value",
"type": "model"
},
"accessLevel": "allow"
}
],
"knownDeviceClasses": [
{
"@odata.type": "microsoft.graph.deviceManagementExchangeDeviceClass",
"name": "Name value",
"type": "model"
}
]
}