List permissionGrants of a group
Namespace: microsoft.graph
List all resource-specific permission grants on the group. This list specifies the Microsoft Entra apps that have access to the group, along with the corresponding resource-specific access that each app has.
This API is available in the following national cloud deployments.
Global service | US Government L4 | US Government L5 (DOD) | China operated by 21Vianet |
---|---|---|---|
✅ | ✅ | ✅ | ❌ |
Permissions
Choose the permission or permissions marked as least privileged for this API. Use a higher privileged permission or permissions only if your app requires it. For details about delegated and application permissions, see Permission types. To learn more about these permissions, see the permissions reference.
Permission type | Least privileged permissions | Higher privileged permissions |
---|---|---|
Delegated (work or school account) | GroupMember.Read.All | Group.Read.All, Group.ReadWrite.All, GroupMember.ReadWrite.All |
Delegated (personal Microsoft account) | Not supported. | Not supported. |
Application | GroupMember.Read.All | Group.Read.All, Group.ReadWrite.All, GroupMember.ReadWrite.All |
HTTP request
GET /groups/{group-id}/permissionGrants
Optional query parameters
This operation doesn't support the OData query parameters to customize the response.
Request headers
Header | Value |
---|---|
Authorization | Bearer {token}. Required. Learn more about authentication and authorization. |
Request body
Don't supply a request body for this method.
Response
If successful, this method returns a 200 OK
response code and a list of resourceSpecificPermissionGrant objects in the response body.
Examples
Request
The following example shows a request.
GET https://graph.microsoft.com/v1.0/groups/02bd9fd6-8f93-4758-87c3-1fb73740a315/permissionGrants
Response
The following example shows the response.
Note: The response object shown here might be shortened for readability.
HTTP/1.1 200 OK
Content-type: application/json
{
"@odata.context": "https://graph.microsoft.com/v1.0/$metadata#permissionGrants",
"value": [
{
"id": "ZfwbxSIj9OGOBxsBmwY555mOHr_W6qN7LEbFYIIcM5A",
"deletedDateTime": null,
"clientId": "771b9da9-2260-41eb-a587-4d936e4aa08c",
"clientAppId": "fdebf36e-8b3a-4b00-99fb-2e4d1da706d6",
"resourceAppId": "00000003-0000-0000-c000-000000000000",
"permissionType": "Application",
"permission": "TeamMember.Read.Group"
},
{
"id": "WsYCHhlwjliiK19ONpJiWq6rtFy-Tg1q8h9-f-DATto",
"deletedDateTime": null,
"clientId": "771b9da9-2260-41eb-a587-4d936e4aa08c",
"clientAppId": "fdebf36e-8b3a-4b00-99fb-2e4d1da706d6",
"resourceAppId": "00000003-0000-0000-c000-000000000000",
"permissionType": "Application",
"permission": "TeamsTab.Create.Group"
},
{
"id": "wtAZautz7ilRA0kgHYWr2Ss2FTK3jPkf-HPhj3FS1wo",
"deletedDateTime": null,
"clientId": "74c92190-dc0e-485a-81c6-fdffd4aadfd8",
"clientAppId": "69024002-35ae-4574-a219-f261183580b4",
"resourceAppId": "00000003-0000-0000-c000-000000000000",
"permissionType": "Application",
"permission": "TeamMember.Read.Group"
}
]
}