Summary
Get Tasks
Description
Get all Tasks.
Route
GET /workflow_builder/tasks/list
Roles
admin
engineering
support
Parameters
DetailsExampleSchema
Name |
Type |
Required |
Description |
This method has no parameters |
Copied to Clipboard
{
"type": "object",
"properties": {},
"required": [],
"additionalProperties": false
}
Return
DetailsExampleSchema
Name |
Type |
Description |
task_list |
array |
List of all Tasks. |
Copied to Clipboard
[
{
"name": "incididunt labore",
"summary": "reprehenderit magna ullamco",
"description": "veniam ipsum",
"location": "Application",
"app": "dolore ipsum",
"displayName": "amet consequat in reprehenderit",
"type": "manual",
"deprecated": true
},
{
"name": "commodo",
"summary": "officia minim ut",
"description": "Ut occaecat in",
"location": "Adapter",
"app": "tempor",
"displayName": "nisi ut est",
"type": "operation",
"deprecated": false
},
{
"name": "do mollit in",
"summary": "mollit exercitation commodo ullamco et",
"description": "elit in officia amet",
"location": "Adapter",
"app": "enim laboris proident non consequat",
"displayName": "ullamco reprehenderit",
"type": "operation",
"deprecated": true
},
{
"name": "Ut ullamco",
"summary": "consectetur",
"description": "eu non ipsum reprehenderit velit",
"location": "Adapter",
"app": "nisi culpa enim",
"displayName": "ut magna cillum in",
"type": "manual",
"deprecated": true
},
{
"name": "dolore sit",
"summary": "ullamco cupidatat ut exercitation",
"description": "Ut dolore reprehenderit",
"location": "Broker",
"app": "cupidatat",
"displayName": "nulla veniam laboris est",
"type": "manual",
"deprecated": true
}
]
Copied to Clipboard
{
"title": "task_list",
"type": "array",
"items": {
"type": "object",
"properties": {
"name": {
"type": "string"
},
"summary": {
"type": "string"
},
"description": {
"type": "string"
},
"location": {
"type": "string",
"enum": [
"Application",
"Adapter",
"Broker"
]
},
"app": {
"type": "string"
},
"displayName": {
"type": "string"
},
"type": {
"type": "string",
"enum": [
"automatic",
"manual",
"operation"
]
},
"variables": {
"type": "object",
"incoming": {
"type": "object"
},
"outgoing": {
"type": "object"
}
},
"deprecated": {
"type": "boolean"
}
}
}
}