Edit

Share via


mobileAppIntentAndState resource type

Namespace: microsoft.graph

Important: APIs under the /beta version in Microsoft Graph are subject to change which could break your applications. While Intune /beta APIs are supported by Microsoft, you should use these at your own discretion. In general, /beta APIs are not recommended for use in production applications. To determine whether an API is available in v1.0, use the Version selector

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"
        }
      ]
    }
  ]
}