Quatrix APIs v1.0
Space shortcuts
Quatrix APIs v1.0 QA1
Skip to end of metadata
Go to start of metadata

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 formatsJSON
Requires authentication?Yes
Rate limited?Yes
Requests / 15-min window (user auth)15
HTTP MethodPOST
Response code200

Parameters

 

Name TypeDefault ValueValidationDescription

id

required

uuid-uuid4

the ID of folder to diff

from

required

timestamp-timestamp

start time of file operations to diff

to

optional

timestampcurrent time

timestamp

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>
	},
	...
]
  • No labels
Write a comment…
Quatrix APIs v1.0 QA1