Get analytics
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.
Get itemAnalytics about the views that took place under this resource.
The itemAnalytics resource is a convenient way to get activity stats for allTime
and the lastSevenDays
.
For a custom time range or interval, use the getActivitiesByInterval API.
Note: The itemAnalytics resource is not yet available in all national deployments.
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) | Files.Read | Files.Read.All, Files.ReadWrite, Files.ReadWrite.All, Sites.Read.All, Sites.ReadWrite.All |
Delegated (personal Microsoft account) | Not supported. | Not supported. |
Application | Files.Read.All | Files.ReadWrite.All, Sites.Read.All, Sites.ReadWrite.All |
HTTP request
GET /drives/{drive-id}/items/{item-id}/analytics
GET /sites/{site-id}/analytics
GET /sites/{site-id}/lists/{list-id}/items/{item-id}/analytics
Note
The value for {item-id}
in the /sites/{site-id}/lists/{list-id}/items/{item-id}
request is the listItemUniqueId
. To get the listItemUniqueId
of an item, call the /sites/{site-id}/lists/{list-id}/items/{item-id}?$select=sharepointIds
endpoint. For details, see sharePointIds.
Optional query parameters
This method supports the OData query parameters to help customize the response.
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 collection of itemAnalytics objects in the response body.
Example
Request
The following example shows a request.
GET /drives/{drive-id}/items/{item-id}/analytics
Response
The following example shows the response.
HTTP/1.1 200 OK
Content-type: application/json
{
"allTime": {
"access": {
"actionCount": 123,
"actorCount": 89
}
},
"lastSevenDays": {
"access": {
"actionCount": 52,
"actorCount": 41
}
}
}