This API call gets file metadata.
Resource URL
/api/1.0/file/metadata/<ID>?content=<1>
Resource Information
| Response formats | JSON |
| Requires authentication? | Yes |
| Rate limited? | Yes |
| Requests / 15-min window (user auth) | 15 |
| HTTP Method | GET |
Parameters
| Name | Type | Default Value | Validation | Description |
content optional | int | 1 | int | 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>, ...]
}
Add Comment