Get item activity stats by interval
Namespace: microsoft.graph
Get a collection of itemActivityStats resources for the activities that took place on this resource within the specified time interval.
Note: The itemAnalytics resource is not yet available in all national deployments.
Analytics aggregates might not be available for all action types.
Permissions
One of the following permissions is required to call this API. To learn more, including how to choose permissions, see Permissions.
Permission type | Permissions (from least to most privileged) |
---|---|
Delegated (work or school account) | Files.Read, Files.ReadWrite, Files.Read.All, Files.ReadWrite.All, Sites.Read.All, Sites.ReadWrite.All |
Delegated (personal Microsoft account) | Not supported. |
Application | Files.Read.All, Files.ReadWrite.All, Sites.Read.All, Sites.ReadWrite.All |
HTTP request
GET /drives/{drive-id}/items/{item-id}/getActivitiesByInterval(startDateTime='2017-01-01',endDateTime='2017-01-10',interval='day')
GET /sites/{site-id}/getActivitiesByInterval(startDateTime='2016-01-01',endDateTime='2017-05-20',interval='month')
GET /sites/{site-id}/lists/{list-id}/items/{item-id}/getActivitiesByInterval(startDateTime='2017-05-01',endDateTime='2017-05-20',interval='week')
Function parameters
Parameter | Type | Description |
---|---|---|
startDateTime | string (timestamp) | The start time over which to aggregate activities. |
endDateTime | string (timestamp) | The end time over which to aggregate activities. |
interval | string | The aggregation interval. |
Note: This API only supports a time range of 90 days for daily counts. The value of the
startDateTime
andendDateTime
parameters must represent a time range of less than 90 days.
Optional query parameters
This method supports the OData query parameters to help customize the response.
Request headers
Name | Description |
---|---|
Authorization | Bearer {code}. Required. |
Request body
Do not supply a request body for this method.
Response
If successful, this method returns a 200 OK
response code and a collection of itemActivityStats object in the response body.
Example
Request
GET /drives/{drive-id}/items/{item-id}/getActivitiesByInterval(startDateTime='2017-01-01',endDateTime='2017-01-3',interval='day')
Response
HTTP/1.1 200 OK
Content-type: application/json
{
"value": [
{
"startDateTime": "2017-01-01T00:00:00.000Z",
"endDateTime": "2017-01-02T00:00:00.000Z",
"delete": {
"actionCount": 1,
"actorCount": 1
},
"access": {
"actionCount": 5,
"actorCount": 3
}
},
{
"startDateTime": "2017-01-02T00:00:00.000Z",
"endDateTime": "2017-01-03T00:00:00.000Z",
"edit": {
"actionCount": 3,
"actorCount": 1
},
"access": {
"actionCount": 7,
"actorCount": 6
}
}
]
}
Feedback
Submit and view feedback for