0

How to get applications installed on a particular device in intune with graph api.

DilliBabu S
  • 53
  • 1
  • 9

1 Answers1

0

When it comes to a specific Intune Graph API that can get applications installed on a particular device, you should be able to use the mobileAppInstallStatus resource type.

The following example shows how you can determine whether an application is installed on a user's device: For more info - Using the Microsoft Graph API for Intune.

Get from Azure Active Directory a list of devices registered to a user:

https://graph.microsoft.com/users/{user}/ownedDevices

Then view the list of applications for your tenant:

https://graph.microsoft.com/deviceAppManagement/mobileApps

Take the ID from the application and determine the installation state for the application (and therefore user):

https://graph.microsoft.com/deviceAppManagement/mobileApps/{id}/deviceStatuses/
James Tran
  • 51
  • 1
  • 9