I am trying to get all the applications installed on all the devices ios,ipad,iphone,android and windows devices using microsoft graph API.
my approach was first to get all the devices using https://graph.microsoft.com/v1.0/deviceManagement/manageddevices and then passing each device id to https://graph.microsoft.com/v1.0/deviceManagement/manageddevices('device_id')?$expand=detectedApps
but there are huge number of devices so the number of API calls i have to make is too many.
Is there any alternate way to do it .
Note:i tried https://graph.microsoft.com/v1.0/deviceManagement/manageddevices?$expand=detectedApps here but this seems to be not working.
Thanks