Edit

Share via


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

Contains properties for the installation status for a user. This will be deprecated in May, 2023

Methods

Method Return Type Description
List userAppInstallStatuses userAppInstallStatus collection List properties and relationships of the userAppInstallStatus objects.
Get userAppInstallStatus userAppInstallStatus Read properties and relationships of the userAppInstallStatus object.
Create userAppInstallStatus userAppInstallStatus Create a new userAppInstallStatus object.
Delete userAppInstallStatus None Deletes a userAppInstallStatus.
Update userAppInstallStatus userAppInstallStatus Update the properties of a userAppInstallStatus object.

Properties

Property Type Description
id String Key of the entity.
userName String User name.
userPrincipalName String User Principal Name.
installedDeviceCount Int32 Installed Device Count.
failedDeviceCount Int32 Failed Device Count.
notInstalledDeviceCount Int32 Not installed device count.

Relationships

Relationship Type Description
app mobileApp The navigation link to the mobile app.
deviceStatuses mobileAppInstallStatus collection The install state of the app on devices.

JSON Representation

Here is a JSON representation of the resource.

{
  "@odata.type": "#microsoft.graph.userAppInstallStatus",
  "id": "String (identifier)",
  "userName": "String",
  "userPrincipalName": "String",
  "installedDeviceCount": 1024,
  "failedDeviceCount": 1024,
  "notInstalledDeviceCount": 1024
}