blob: bbfe02e95e38e704bd2c0d99209b4faefe172fe5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
|
---
tags:
- "File Bulk Download"
summary: 'Group multiple files to download as one zip archive'
description: "This endpoint allows you to bulk download several files
which you uploaded beforehand. Note that the `download_list`
MUST contain more than two files. The max length is configurable
(default is 10)."
requestBody:
description: "The files that will be combined for one single download"
required: true
content:
application/json:
schema:
$ref: '#/components/schemas/BulkBody'
responses:
201:
description: "A new resource to download all files as one archive"
content:
application/json:
schema:
$ref: '#/components/schemas/UploadResponse'
400:
description: "Invalid input"
content:
application/json:
schema:
oneOf:
- $ref: '#/components/schemas/ErrorAtLeastTwoResponse'
- $ref: '#/components/schemas/ErrorResponse'
500:
description: "Unable to clean the file"
content:
application/json:
schema:
$ref: '#/components/schemas/ErrorResponse'
|