This API call returns a list of file operations occurred in the folder in a given period of time. Operations are aggregated in such way that only actual operations are shown.
Resource URL
/api/1.0/file/diff
Resource Information
| Response formats | JSON |
| Requires authentication? | Yes |
| Rate limited? | Yes |
| Requests / 15-min window (user auth) | 15 |
| HTTP Method | POST |
| Response code | 200 |
Parameters
| Name | Type | Default Value | Validation | Description |
id required | uuid | - | uuid4 | the ID of folder to diff |
from required | timestamp | - | timestamp | start time of file operations to diff |
to optional | timestamp | current time | end time of file operations to diff |
Example Request URL
Example Result
[
{
"id": <uuid>,
"action":<string>,
"parent_id": <uuid>,
"name": <string>,
"type": <string>,
"size": <int>,
"modified": <timestamp>,
"expires": <timestamp>,
"operations": <int>,
"metadata": <json>
},
...
]
0 Comments