deviceAppManagementTask resource type
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.
A device app management task.
Methods
Method | Return Type | Description |
---|---|---|
List deviceAppManagementTasks | deviceAppManagementTask collection | List properties and relationships of the deviceAppManagementTask objects. |
Get deviceAppManagementTask | deviceAppManagementTask | Read properties and relationships of the deviceAppManagementTask object. |
Create deviceAppManagementTask | deviceAppManagementTask | Create a new deviceAppManagementTask object. |
Delete deviceAppManagementTask | None | Deletes a deviceAppManagementTask. |
Update deviceAppManagementTask | deviceAppManagementTask | Update the properties of a deviceAppManagementTask object. |
updateStatus action | None | Set the task's status and attach a note. |
Properties
Property | Type | Description |
---|---|---|
id | String | The entity key. |
displayName | String | The name. |
description | String | The description. |
createdDateTime | DateTimeOffset | The created date. |
dueDateTime | DateTimeOffset | The due date. |
category | deviceAppManagementTaskCategory | The category. Possible values are: unknown , advancedThreatProtection . |
priority | deviceAppManagementTaskPriority | The priority. Possible values are: none , high , low . |
creator | String | The email address of the creator. |
creatorNotes | String | Notes from the creator. |
assignedTo | String | The name or email of the admin this task is assigned to. |
status | deviceAppManagementTaskStatus | The status. Possible values are: unknown , pending , active , completed , rejected . |
Relationships
None
JSON Representation
Here is a JSON representation of the resource.
{
"@odata.type": "#microsoft.graph.deviceAppManagementTask",
"id": "String (identifier)",
"displayName": "String",
"description": "String",
"createdDateTime": "String (timestamp)",
"dueDateTime": "String (timestamp)",
"category": "String",
"priority": "String",
"creator": "String",
"creatorNotes": "String",
"assignedTo": "String",
"status": "String"
}