mobileApp resource type

Namespace: microsoft.graph

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 Not yet documented

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.
publishingState mobileAppPublishingState The publishing state for the app. The app cannot be assigned unless the app is published. Possible values are: notPublished, processing, published.

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.

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",
  "publishingState": "String"
}