SOLVED

Is there any limit on the number of devices returned for the Intune's Graph get list API ?

Copper Contributor

There is no mentioning of pagination for the intune devices retuned in the response. So assuming there are 50k devices enrolled in Intune ( now Endpoint Manager ), will the API return the attributes of all the 50k devices in a single GET call? 

 

API Doc: https://docs.microsoft.com/en-us/graph/api/intune-devices-manageddevice-get?view=graph-rest-beta

1 Reply
best response confirmed by Arun_Joseph (Copper Contributor)
Solution
This API call actually seems to support paging (try adding $top=1 to the URL). For me this returns the regular @odata.nextLink URL. The documentation also mentions that the regular OData query parameters are supported.
1 best response

Accepted Solutions
best response confirmed by Arun_Joseph (Copper Contributor)
Solution
This API call actually seems to support paging (try adding $top=1 to the URL). For me this returns the regular @odata.nextLink URL. The documentation also mentions that the regular OData query parameters are supported.

View solution in original post