Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Namespace: microsoft.graph
Important: Microsoft supports Intune /beta APIs, but they are subject to more frequent change. Microsoft recommends using version v1.0 when possible. Check an API's availability in version v1.0 using 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
}