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. Note: Listing mobile apps with $expand=assignments has been deprecated. Instead get the list of apps without the $expand query on assignments. Then, perform the expansion on individual applications.

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.
assign action None
validateXml action String
createCatalogApp action mobileApp
convertFromMobileAppCatalogPackage function mobileApp
updateRelationships action None
getPublishingConstraints function mobileAppPublishingConstraints

Properties

Property Type Description
id String Key of the entity. This property is read-only.
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. This property is read-only.
lastModifiedDateTime DateTimeOffset The date and time the app was last modified. This property is read-only.
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. Possible values are: 0 - Not Ready, 1 - Ready, 2 - Processing. This property is read-only.
publishingState mobileAppPublishingState The publishing state for the app. The app cannot be assigned unless the app is published. This property is read-only. Possible values are: notPublished, processing, published.
isAssigned Boolean The value indicating whether the app is assigned to at least one group. This property is read-only.
roleScopeTagIds String collection List of scope tag ids for this mobile app.
dependentAppCount Int32 The total number of dependencies the child app has. This property is read-only.
supersedingAppCount Int32 The total number of apps this app directly or indirectly supersedes. This property is read-only.
supersededAppCount Int32 The total number of apps this app is directly or indirectly superseded by. This property is read-only.

Relationships

Relationship Type Description
categories mobileAppCategory collection The list of categories for this app.
assignments mobileAppAssignment collection The list of group assignments for this mobile app.
relationships mobileAppRelationship collection The set of direct relationships for this 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,
  "supersedingAppCount": 1024,
  "supersededAppCount": 1024
}