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

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
}