File tree Expand file tree Collapse file tree 2 files changed +49
-0
lines changed Expand file tree Collapse file tree 2 files changed +49
-0
lines changed Original file line number Diff line number Diff line change
1
+ enabled :
2
+ name : enabled
3
+ in : query
4
+ description : If the returned task should have its 'enabled' property set to true.
5
+ required : false
6
+ schema :
7
+ type : boolean
8
+
9
+ action :
10
+ name : action
11
+ in : query
12
+ description : Which action the returned task should have. Can be a list of string separated with commas.
13
+ required : false
14
+ style : form
15
+ explode : false
16
+ schema :
17
+ type : array
18
+ items :
19
+ $ref : ' ./schemas/task.yml#/ActionType'
20
+ example : save,replace
21
+
22
+ destinationID :
23
+ name : destinationID
24
+ in : query
25
+ description : Which destinationID the returned task should have. Can be a list of string separated with commas.
26
+ required : false
27
+ style : form
28
+ explode : false
29
+ schema :
30
+ type : array
31
+ items :
32
+ type : string
33
+
34
+ triggerType :
35
+ name : triggerType
36
+ in : query
37
+ description : Which trigger type the returned task should have. Can be a list of string separated with commas.
38
+ required : false
39
+ style : form
40
+ explode : false
41
+ schema :
42
+ type : array
43
+ items :
44
+ $ref : ' ./schemas/task.yml#/TriggerType'
45
+ example : on_demand,schedule
Original file line number Diff line number Diff line change 7
7
parameters :
8
8
- $ref : ' ../../common/parameters.yml#/itemsPerPage'
9
9
- $ref : ' ../../common/parameters.yml#/page'
10
+ - $ref : ' ../../common/taskParameters.yml#/action'
11
+ - $ref : ' ../../common/taskParameters.yml#/enabled'
12
+ - $ref : ' ../../common/taskParameters.yml#/destinationID'
13
+ - $ref : ' ../../common/taskParameters.yml#/triggerType'
10
14
responses :
11
15
' 200 ' :
12
16
description : OK
You can’t perform that action at this time.
0 commit comments