Create deviceComplianceActionItem
Note: The Microsoft Graph API for Intune requires an active Intune license for the tenant.
Create a new deviceComplianceActionItem object.
Prerequisites
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 most to least privileged) |
---|---|
Delegated (work or school account) | DeviceManagementConfiguration.ReadWrite.All |
Delegated (personal Microsoft account) | Not supported. |
Application | Not supported. |
HTTP Request
POST /deviceManagement/deviceCompliancePolicies/{deviceCompliancePolicyId}/scheduledActionsForRule/{deviceComplianceScheduledActionForRuleId}/scheduledActionConfigurations
Request headers
Header | Value |
---|---|
Authorization | Bearer <token> Required. |
Accept | application/json |
Request body
In the request body, supply a JSON representation for the deviceComplianceActionItem object.
The following table shows the properties that are required when you create the deviceComplianceActionItem.
Property | Type | Description |
---|---|---|
id | String | Key of the entity. |
gracePeriodHours | Int32 | Number of hours to wait till the action will be enforced. Valid values 0 to 8760 |
actionType | deviceComplianceActionType | What action to take. Possible values are: noAction , notification , block , retire , wipe , removeResourceAccessProfiles , pushNotification . |
notificationTemplateId | String | What notification Message template to use |
notificationMessageCCList | String collection | A list of group IDs to speicify who to CC this notification message to. |
Response
If successful, this method returns a 201 Created
response code and a deviceComplianceActionItem object in the response body.
Example
Request
Here is an example of the request.
POST https://graph.microsoft.com/v1.0/deviceManagement/deviceCompliancePolicies/{deviceCompliancePolicyId}/scheduledActionsForRule/{deviceComplianceScheduledActionForRuleId}/scheduledActionConfigurations
Content-type: application/json
Content-length: 271
{
"@odata.type": "#microsoft.graph.deviceComplianceActionItem",
"gracePeriodHours": 0,
"actionType": "notification",
"notificationTemplateId": "Notification Template Id value",
"notificationMessageCCList": [
"Notification Message CCList value"
]
}
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 201 Created
Content-Type: application/json
Content-Length: 320
{
"@odata.type": "#microsoft.graph.deviceComplianceActionItem",
"id": "e01a1893-1893-e01a-9318-1ae093181ae0",
"gracePeriodHours": 0,
"actionType": "notification",
"notificationTemplateId": "Notification Template Id value",
"notificationMessageCCList": [
"Notification Message CCList value"
]
}
Feedback
Loading feedback...