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

This API call gets file metadata.  

Resource URL

/api/1.0/file/metadata/<ID>?content=<1>

Resource Information

 

Response formatsJSON
Requires authentication?Yes
Rate limited?Yes
Requests / 15-min window (user auth)15
HTTP MethodGET

Parameters

 

Name TypeDefault ValueValidationDescription

content

optional

int1int

if the content is not equal to 1, the 'content' parameter is not returned in metadata

 

 


Example Request URL

Example Result

{
    "id": <uuid>,
    "created": <timestamp>,
    "expires": <timestamp>,
    "modified": <timestamp>,
    "name": <string>,
    "parent_id": <uuid>,
    "size": <int>,
    "type": <string>,
    "metadata": <json>,
    "operations": <int>,
    "content": [<file_metadata>, ...]
}

 

 

 

 

 

 

 

  • No labels
Write a comment…
Quatrix APIs v1.0 QA1