Request
Provide your bearer token in the Authorization
header when making requests to protected resources. Example:Authorization: Bearer ********************
Body Params application/json
{
"files": [
{
"name": "file1.jpg",
"path": "path/to/file1.jpg",
"folder_id": 1
},
{
"name": "file2.jpg",
"path": "path/to/file2.jpg",
"folder_id": 1
}
]
}
Request Code Samples
curl --location --request POST 'https://client-backend-quantum-project.test/cbre-client/api/file-manager/files/bulk' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data-raw '{
"files": [
{
"name": "file1.jpg",
"path": "path/to/file1.jpg",
"folder_id": 1
},
{
"name": "file2.jpg",
"path": "path/to/file2.jpg",
"folder_id": 1
}
]
}'
Responses
application/json Modified at 2024-06-25 12:23:01