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": "officia reprehenderit",
"summary": "elit dolore",
"description": "voluptate tempor eu ad officia",
"location": "Adapter",
"app": "dolor sunt occaecat",
"displayName": "dolore adipisicing in fugiat Duis",
"type": "operation",
"deprecated": true
},
{
"name": "veniam laborum mollit cillum",
"summary": "anim mollit",
"description": "sunt amet exercitation",
"location": "Application",
"app": "laborum",
"displayName": "cillum consectetur deserunt aliqua",
"type": "manual",
"deprecated": true
},
{
"name": "quis sint",
"summary": "ex aliqua",
"description": "culpa adipisicing eu",
"location": "Adapter",
"app": "Duis",
"displayName": "exercitation",
"type": "automatic",
"deprecated": false
},
{
"name": "amet dolore",
"summary": "in sunt et",
"description": "irure",
"location": "Application",
"app": "laboris esse Excepteur",
"displayName": "consectetur consequat sunt aliquip",
"type": "automatic",
"deprecated": false
}
]
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"
}
}
}
}