Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Namespace: microsoft.graph
Important
APIs under the /beta version in Microsoft Graph are subject to change. Use of these APIs in production applications is not supported. To determine whether an API is available in v1.0, use the Version selector.
Read the properties of a groupAnalytics object that contains point-in-time analytics for a group in a Microsoft Entra tenant, as part of identity analytics.
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) | Reports.Read.All | Directory.Read.All |
| Delegated (personal Microsoft account) | Not supported. | Not supported. |
| Application | Reports.Read.All | Directory.Read.All |
Important
For delegated access using work or school accounts, the signed-in user must be assigned a supported Microsoft Entra role or a custom role that grants the permissions required for this operation. This operation supports the following built-in roles, which provide only the least privilege necessary:
- Reports Reader
- Security Reader
- Security Administrator
HTTP request
GET /reports/identityAnalytics/groups/{groupAnalyticsId}
Optional query parameters
This method supports the $select OData query parameter to help customize the response. For general information, see OData query parameters.
Request headers
| Name | Description |
|---|---|
| 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 groupAnalytics object in the response body.
Examples
Request
The following example shows a request.
GET https://graph.microsoft.com/beta/reports/identityAnalytics/groups/1f3a3b9c-6e2c-4f0a-9b2c-9a6d4d2e8f10
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/beta/$metadata#reports/identityAnalytics/groups/$entity",
"id": "1f3a3b9c-6e2c-4f0a-9b2c-9a6d4d2e8f10",
"tenantId": "5d6f7a8b-1c2d-3e4f-5a6b-7c8d9e0f1a2b",
"displayName": "Sales Team",
"calculatedDateTime": "2026-06-08T00:00:00Z",
"createdDateTime": "2023-02-15T10:30:00Z",
"groupType": "isCloudGroup",
"dynamicMembershipType": "None",
"isValidGroup": true,
"isCloudM365Group": true,
"isCloudDistributionListGroup": false,
"isCloudMailEnabledSecurityGroup": false,
"isCloudSecurityGroup": false,
"isDynamicGroup": false,
"isOnPremiseDistributionListGroup": false,
"isOnPremiseMailEnabledSecurityGroup": false,
"isOnPremiseSecurityGroup": false,
"directGroupMemberCount": 3,
"transitiveUserCount": 412,
"memberTransitiveUserCount": 405,
"guestTransitiveUserCount": 7,
"transitiveServicePrincipalCount": 2,
"assignedRoleCount": 1,
"sensitivityLabelCount": 1,
"guestOwnerCount": 0,
"memberOwnerCount": 2,
"servicePrincipalOwnerCount": 0
}