Files
Files stuff here.
Get a list of unarchived files associated with your account.
GET
https://clevver.org/api/files
Query Parameters
Name | Type | Description |
---|---|---|
archived | Boolean | When true returns archived files (default: false) |
filter | String | When 'untagged' returns only untagged files. (default: no filter.) |
tags | String | A comma delimited list of tags |
page | Integer | The page number to retrieve |
Retrieve data about a specific file
GET
https://clevver.org/api/files/{file_id}
Path Parameters
Name | Type | Description |
---|---|---|
file_id* | String | The id of the file |
Update a file
PUT
https://clevver.org/api/{file_id}
Path Parameters
Name | Type | Description |
---|---|---|
file_id* | String | The id of the file to update |
Query Parameters
Name | Type | Description |
---|---|---|
tags[] | String | An array of tags for the file |
name | String | The name (title) of the file |
Archive a file
PATCH
https://clevver.org/apifiles/{file_id}/archive
Path Parameters
Name | Type | Description |
---|---|---|
file_id | String | The id of the file to archive |
Unarchive a file
PATCH
https://clevver.org/apifiles/{file_id}/unarchive
Path Parameters
Name | Type | Description |
---|---|---|
file_id | String | The id of the file to unarchive |
Last updated