mobileAppIntentAndState 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.
MobileApp Intent and Install State for a given device.
Methods
Method | Return Type | Description |
---|---|---|
List mobileAppIntentAndStates | mobileAppIntentAndState collection | List properties and relationships of the mobileAppIntentAndState objects. |
Get mobileAppIntentAndState | mobileAppIntentAndState | Read properties and relationships of the mobileAppIntentAndState object. |
Create mobileAppIntentAndState | mobileAppIntentAndState | Create a new mobileAppIntentAndState object. |
Delete mobileAppIntentAndState | None | Deletes a mobileAppIntentAndState. |
Update mobileAppIntentAndState | mobileAppIntentAndState | Update the properties of a mobileAppIntentAndState object. |
Properties
Property | Type | Description |
---|---|---|
id | String | UUID for the object |
managedDeviceIdentifier | String | Device identifier created or collected by Intune. |
userId | String | Identifier for the user that tried to enroll the device. |
mobileAppList | mobileAppIntentAndStateDetail collection | The list of payload intents and states for the tenant. |
Relationships
None
JSON Representation
Here is a JSON representation of the resource.
{
"@odata.type": "#microsoft.graph.mobileAppIntentAndState",
"id": "String (identifier)",
"managedDeviceIdentifier": "String",
"userId": "String",
"mobileAppList": [
{
"@odata.type": "microsoft.graph.mobileAppIntentAndStateDetail",
"applicationId": "String",
"displayName": "String",
"mobileAppIntent": "String",
"displayVersion": "String",
"installState": "String",
"supportedDeviceTypes": [
{
"@odata.type": "microsoft.graph.mobileAppSupportedDeviceType",
"type": "String",
"minimumOperatingSystemVersion": "String",
"maximumOperatingSystemVersion": "String"
}
]
}
]
}