Get file list
FileBody
Delete file
id
No Content
Delete files
DeleteFilesRequestBody
Get single variable
Update file
UpdateFileRequestBody
File data
const response = await fetch('/v1/files', { method: 'GET', headers: {}, }); const data = await response.json();
{ "description": "text", "status": "text", "data": { "folder_name": "text", "project_id": "text", "search": "text", "sort": "text" } }
const response = await fetch('/v1/files/{id}', { method: 'DELETE', headers: {}, }); const data = await response.json();
{ "description": "text", "status": "text", "data": "text" }
const response = await fetch('/v1/files', { method: 'DELETE', headers: { "Content-Type": "application/json" }, body: JSON.stringify({}), }); const data = await response.json();
const response = await fetch('/v1/files/{id}', { method: 'GET', headers: {}, }); const data = await response.json();
{ "description": "text", "status": "text", "data": { "description": "text", "file_name_disk": "text", "file_name_download": "text", "file_size": 0, "id": "text", "link": "text", "project_id": "text", "storage": "text", "tags": [ "text" ], "title": "text" } }
const response = await fetch('/v1/files', { method: 'PUT', headers: { "Content-Type": "application/json" }, body: JSON.stringify({}), }); const data = await response.json();