mobileApp 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.

An abstract class containing the base properties for Intune mobile apps.

Methods

Method Return Type Description
List mobileApps mobileApp collection List properties and relationships of the mobileApp objects.
Get mobileApp mobileApp Read properties and relationships of the mobileApp object.
Apps
assign action None
getMobileAppCount function Int64
getTopMobileApps function mobileApp collection
updateRelationships action None
getRelatedAppStates function mobileAppRelationshipState collection
Policy Set
hasPayloadLinks action hasPayloadLinkResultItem collection

Properties

Property Type Description
id String Key of the entity.
displayName String The admin provided or imported title of the app.
description String The description of the app.
publisher String The publisher of the app.
largeIcon mimeContent The large icon, to be displayed in the app details and used for upload of the icon.
createdDateTime DateTimeOffset The date and time the app was created.
lastModifiedDateTime DateTimeOffset The date and time the app was last modified.
isFeatured Boolean The value indicating whether the app is marked as featured by the admin.
privacyInformationUrl String The privacy statement Url.
informationUrl String The more information Url.
owner String The owner of the app.
developer String The developer of the app.
notes String Notes for the app.
uploadState Int32 The upload state.
publishingState mobileAppPublishingState The publishing state for the app. The app cannot be assigned unless the app is published. Possible values are: notPublished, processing, published.
isAssigned Boolean The value indicating whether the app is assigned to at least one group.
roleScopeTagIds String collection List of scope tag ids for this mobile app.
dependentAppCount Int32 The total number of dependencies the child app has.

Relationships

Relationship Type Description
Apps
categories mobileAppCategory collection The list of categories for this app.
assignments mobileAppAssignment collection The list of group assignments for this mobile app.
installSummary mobileAppInstallSummary Mobile App Install Summary.
deviceStatuses mobileAppInstallStatus collection The list of installation states for this mobile app.
userStatuses userAppInstallStatus collection The list of installation states for this mobile app.
relationships mobileAppRelationship collection List of relationships for this mobile app.

JSON Representation

Here is a JSON representation of the resource.

{
  "@odata.type": "#microsoft.graph.mobileApp",
  "id": "String (identifier)",
  "displayName": "String",
  "description": "String",
  "publisher": "String",
  "largeIcon": {
    "@odata.type": "microsoft.graph.mimeContent",
    "type": "String",
    "value": "binary"
  },
  "createdDateTime": "String (timestamp)",
  "lastModifiedDateTime": "String (timestamp)",
  "isFeatured": true,
  "privacyInformationUrl": "String",
  "informationUrl": "String",
  "owner": "String",
  "developer": "String",
  "notes": "String",
  "uploadState": 1024,
  "publishingState": "String",
  "isAssigned": true,
  "roleScopeTagIds": [
    "String"
  ],
  "dependentAppCount": 1024
}