-
-
Notifications
You must be signed in to change notification settings - Fork 341
/
Copy pathREST-API.yml
100 lines (98 loc) · 3.08 KB
/
REST-API.yml
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
openapi: 3.0.0
info:
title: Download Service API
version: 1.0.0
description: API for managing download tasks and queues.
servers:
- url: http://localhost:15151
description: Default server running on port 15151
paths:
/add:
post:
summary: Add a new download source
requestBody:
description: Data for adding a download source
content:
application/json:
schema:
type: object
properties:
link:
type: string
description: The link to the download source
headers:
type: object
additionalProperties:
type: string
description: Optional headers for the request
downloadPage:
type: string
description: Optional download page URL
responses:
"200":
description: Successfully added the download
content:
plain/text:
schema:
type: string
description: OK on success
/queues:
get:
summary: Get list of download queues
responses:
"200":
description: List of download queues
content:
application/json:
schema:
type: array
items:
type: object
properties:
id:
type: integer
description: The unique ID of the queue
name:
type: string
description: The name of the queue
/start-headless-download:
post:
summary: Add a new download task
requestBody:
description: Data for adding a download task
content:
application/json:
schema:
type: object
properties:
downloadSource:
type: object
properties:
link:
type: string
description: The link to the download source
headers:
type: object
additionalProperties:
type: string
description: Optional headers for the request
downloadPage:
type: string
description: Optional download page URL
folder:
type: string
description: Optional folder to save the download (Unix style path)
name:
type: string
description: Optional name for the download task
queueId:
type: integer
description: Optional queue ID to associate the task with
responses:
"200":
description: Successfully added the download task
content:
plain/text:
schema:
type: string
description: OK on success