Scenario
You are using Exclaimer Cloud and wish to manually query Azure AD for group members, which Exclaimer Cloud synchronizes.
Resolution
Follow the steps below to use the Graph Explorer tool to view group members data currently held in Azure:
Office 365 Global Administrator credentials
- Browse to the Azure AD Graph Explorer (https://developer.microsoft.com/en-us/graph/graph-explorer)
- Click Login and sign in with your Office 365 Global Administrator account.
- If prompted, accept the permissions request:
- The Microsoft Graph Explorer screen is displayed.
- Change the API from V1 to Beta:
-
In the query box enter the following:
https://graph.microsoft.com/v1.0/groups?$select=id,displayname
For example: -
Click Run Query.
The results page displays an output similar to this:
{
"@odata.context": "https://graph.microsoft.com/v1.0/$metadata#groups(id,displayName)",
"value": [
{
"id": "035fe18c-7427-40cb-8a4c-371b15a58d6f",
"displayName": "sg-Operations"
},
{
"id": "0638c5e9-1424-4da6-9538-a4f8ea8799ac",
"displayName": "Mark 8 Project Team"
},
..... -
Locate the group you need and copy the ID displayed above the group name.
-
Update the query address to match the below:
https://graph.microsoft.com/v1.0/groups/<Group ID Here>/members?$select=displayName
- Click Run Query.
The results page displays an output similar to this:
{
"@odata.context": "https://graph.microsoft.com/v1.0/$metadata#directoryObjects(displayName)",
"value": [
{
"@odata.type": "#microsoft.graph.user",
"displayName": "David Milward"
},
{
"@odata.type": "#microsoft.graph.orgContact",
"displayName": "Anthony Skilton"
}
]
} - Review the output to confirm if the user is present, or copy the content of the output to a text file and send it to Exclaimer Support to help troubleshoot any issues you may have.