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": "Ut Duis Excepteur eiusmod irure",
"summary": "mollit anim Excepteur in",
"description": "occaecat commodo quis voluptate",
"location": "Application",
"app": "cillum tempor magna",
"displayName": "dolor eiusmod est nostrud cillum",
"type": "operation",
"variables": {},
"deprecated": true
},
{
"name": "velit",
"summary": "laborum dolor Lorem sed non",
"description": "est",
"location": "Application",
"app": "irure pariatur Duis elit",
"displayName": "consectetur et ad",
"type": "manual",
"variables": {},
"deprecated": false
},
{
"name": "occaecat qui nulla",
"summary": "laborum enim cupidatat",
"description": "non Excepteur nostrud",
"location": "Adapter",
"app": "Excepteur nostrud",
"displayName": "cupidatat",
"type": "manual",
"variables": {},
"deprecated": false
},
{
"name": "et",
"summary": "est sit Duis",
"description": "anim",
"location": "Broker",
"app": "sed et",
"displayName": "id Lorem est ullamco dolore",
"type": "operation",
"variables": {},
"deprecated": false
},
{
"name": "irure eu aliqua dolore",
"summary": "non in",
"description": "irure Lorem",
"location": "Application",
"app": "sit culpa",
"displayName": "quis adipisicing",
"type": "automatic",
"variables": {},
"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",
"properties": {
"incoming": {
"type": "object"
},
"outgoing": {
"type": "object"
}
}
},
"deprecated": {
"type": "boolean"
}
}
}
}