Forum Discussion
Stephane Lalancette
Oct 15, 2020Brass Contributor
Group memberships
Hi, is there a way to see which groups a specific device in MEM is in? We have this option in on-prem AD, but I can't find a way to do the same in MEM/Azure Thks
Sean_McLaren
Microsoft
Oct 15, 2020
An option you would have today to quickly see this information would be to use the graph explorer (Graph Explorer - Microsoft Graph) with this query GET /devices/{id}/memberOf/ (replace Id with your devices 'Id' property (not "deviceId"). . To find the Id property, you can search by name first using this query: GET /devices?$filter=startswith(displayName,'{DeviceName}')
Hope that helps in the short term.