This article is a follow‑up to our main guide:
Using Entra ID (previously Azure Active Directory) to set up valid email addresses
If you followed that setup guide and are seeing permission errors when syncing mail-enabled groups, this article explains why it happens and how to fix it.
When syncing mail-enabled groups, you may see an error like this:
Syncing groups failed: Response missing required 'value': {
"error": {
"code": "Authorization_RequestDenied",
"message": "Insufficient privileges to complete the operation.",
"innerError": {
"date": "2024-10-05T09:22:31",
"request-id": "a3f7c2d1-9b84-47e1-8c0d-2a6f1f8d9e77",
"client-request-id": "a3f7c2d1-9b84-47e1-8c0d-2a6f1f8d9e77"
}
}
}
This indicates that the Entra ID application used for syncing does not have sufficient Microsoft Graph API permissions.
User.Read.All and Group.Read.All to sync user accounts. Group sync requires additional permissions.
To successfully read mail-enabled groups and their memberships, add these Application (not Delegated) permissions to your app:
| Permission (Application-level) | Purpose |
|---|---|
Group.Read.All |
Read all group properties and memberships |
GroupMember.Read.All |
Read membership lists and basic group info |
Group.ReadWrite.All (optional) |
Manage non-mail-enabled groups (does not override mail-enabled group read-only restrictions) |
⚠️ Note:
Group.ReadWrite.Allis not required for most sync scenarios, and does not allow modifications to mail-enabled groups.
Group.Read.AllGroupMember.Read.AllGroup.ReadWrite.All Even with the correct permissions, Graph only provides read access for mail-enabled groups. You cannot:
For those tasks, you must use:
Group.Read.All and GroupMember.Read.All under Application permissions. Authorization_RequestDenied, check that the app registration you’re using is the same one updated with the new permissions. "Authorization_RequestDenied" error means your sync app lacks group-related Graph permissions. Group.Read.All and GroupMember.Read.All as application permissions and grant admin consent.