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": "elit",
"summary": "dolor in",
"description": "ea culpa est",
"location": "Broker",
"app": "fugiat consectetur ullamco tempor",
"displayName": "ut commodo ullamco",
"type": "automatic",
"variables": {},
"deprecated": false
},
{
"name": "in",
"summary": "sint qui esse",
"description": "ea",
"location": "Adapter",
"app": "Excepteur eu incididunt Duis deserunt",
"displayName": "id laboris do",
"type": "operation",
"variables": {},
"deprecated": false
},
{
"name": "eu est proident",
"summary": "et aute",
"description": "nostrud laboris in",
"location": "Adapter",
"app": "laborum ad nulla amet irure",
"displayName": "anim nulla ipsum dolore officia",
"type": "manual",
"variables": {},
"deprecated": true
},
{
"name": "magna irure",
"summary": "id velit",
"description": "dolor commodo voluptate",
"location": "Broker",
"app": "voluptate occaecat veniam mollit",
"displayName": "ea cillum tempor irure et",
"type": "operation",
"variables": {},
"deprecated": false
},
{
"name": "laborum ad mollit",
"summary": "elit Ut",
"description": "quis commodo magna consectetur",
"location": "Broker",
"app": "nostrud in voluptate ullamco deserunt",
"displayName": "consequat",
"type": "manual",
"variables": {},
"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",
"properties": {
"incoming": {
"type": "object"
},
"outgoing": {
"type": "object"
}
}
},
"deprecated": {
"type": "boolean"
}
}
}
}