- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-21-2024 03:18 AM
Hi,
i am currently able to get all the required intune device information from the managedDevices GET API, however, i am unable to get the IP address of these devices with this API. Does anyone know how to solve this problem without using the service graph connector plugin, thank you.
Current API used: https://learn.microsoft.com/en-us/graph/api/intune-devices-manageddevice-list?view=graph-rest-1.0
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-21-2024 03:47 AM
You can make an additional call for each deviceID to the windowsManagedDevice API. This includes ipAddressV4 attribute and much more.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-21-2024 03:47 AM
You can make an additional call for each deviceID to the windowsManagedDevice API. This includes ipAddressV4 attribute and much more.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-21-2024 04:14 AM
hi this looks great thank you. im imaging moving over to do this in flow designer and using two rest actions for the two api's, im kind of having a hard time picturing on how this will function. could you provide any guidance? i am trying to cycle through all the devices with the first api whilst giving each record their corresponding IP address with the API you suggested
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-25-2024 04:16 AM
In a script include you would typically get each deviceID and push to an array using the array.push() function. After that loop through each deviceID and make the API call. In Flow designer you may need to create a custom script action to build the array, then use the for each flow logic.