Azure Graph API - Device Mgmt. does not return all systems

865 Views Asked by At

I have sent the following call to the Microsoft Graph API: https://graph.microsoft.com/beta/deviceManagement/managedDevices here I get a list of devices, but it is incomplete. Client and server systems are missing, which our customer can see via the web interface (endpoint.microsoft.com). The first thought was that the client systems are not in Intune, but this isn't true. If I now make my subsequent query for the individual devices and take an ID that does not come from the response but from the interface of the customer, I get an "internal server error". I have made the following queries: https://graph.microsoft.com/beta/deviceManagement/managedDevices/{DeviceId}/windowsProtectionState https://graph.microsoft.com/beta/deviceManagement/managedDevices/{DeviceId}/windowsProtectionState/detectedMalwareState

Is it possible to get a logical error message there?

How to retrieve the information for server systems and what can be the reason that we do not get all client system?

1

There are 1 best solutions below

4
On

The complete data (Device) might be not coming in a single page there will a next page link for see the rest of devices (Missing Server and Client System)

enter image description here

Use the @odata. next link API to get the Rest of missing System

enter image description here


Here is one more alternative way you can get the List of Client and Server System(Including Manage and Unmanaged).

API for Server System Details:

https://graph.microsoft.com/v1.0/devices?$count=true&$filter=startswith(operatingSystem, 'Windows Server')

enter image description here

API for Client System Details

https://graph.microsoft.com/v1.0/devices?$count=true&$filter=startswith(operatingSystem, 'Windows')

enter image description here

Note: Based on version you can also filter like Windows 10 or Window Sever 2012 Datacentre

Reference : https://learn.microsoft.com/en-us/graph/api/device-list?view=graph-rest-1.0&tabs=http