detectedApp 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.
A managed or unmanaged app that is installed on a managed device. Unmanaged apps will only appear for devices marked as corporate owned.
Methods
Method | Return Type | Description |
---|---|---|
List detectedApps | detectedApp collection | List properties and relationships of the detectedApp objects. |
Get detectedApp | detectedApp | Read properties and relationships of the detectedApp object. |
Create detectedApp | detectedApp | Create a new detectedApp object. |
Delete detectedApp | None | Deletes a detectedApp. |
Update detectedApp | detectedApp | Update the properties of a detectedApp object. |
Properties
Property | Type | Description |
---|---|---|
id | String | The unique Identifier for the detected application. This is automatically generated by Intune at the time the application is created. Read-only. |
displayName | String | Name of the discovered application. Read-only |
version | String | Version of the discovered application. Read-only |
sizeInByte | Int64 | Discovered application size in bytes. Read-only |
deviceCount | Int32 | The number of devices that have installed this application |
publisher | String | Indicates the publisher of the discovered application. For example: 'Microsoft'. The default value is an empty string. |
platform | detectedAppPlatformType | Indicates the operating system / platform of the discovered application. Some possible values are Windows, iOS, macOS. The default value is unknown (0). Possible values are: unknown , windows , windowsMobile , windowsHolographic , ios , macOS , chromeOS , androidOSP , androidDeviceAdministrator , androidWorkProfile , androidDedicatedAndFullyManaged , unknownFutureValue . |
Relationships
Relationship | Type | Description |
---|---|---|
managedDevices | managedDevice collection | The devices that have the discovered application installed |
JSON Representation
Here is a JSON representation of the resource.
{
"@odata.type": "#microsoft.graph.detectedApp",
"id": "String (identifier)",
"displayName": "String",
"version": "String",
"sizeInByte": 1024,
"deviceCount": 1024,
"publisher": "String",
"platform": "String"
}