In Endpoint Manager, I can list out the software on a test machine and it looks like this:
Yet when I try to get the same data from the Graph API
https://graph.microsoft.com/v1.0/deviceManagement/detectedApps
That gives me an empty json list:
{
"@odata.context": "https://graph.microsoft.com/v1.0/$metadata#deviceManagement/detectedApps",
"@odata.count": 0,
"value": []
}
I've spent hours now googling for articles and documentation on alternative APIs that might give me the same list, but nothing yet.
So what API should I use to get the list of software on each machine ?
thanks in advance :)