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": "ipsum",
"summary": "mollit laborum commodo qui Lorem",
"description": "nulla eiusmod Lorem enim",
"location": "Adapter",
"app": "qui amet fugiat in",
"displayName": "enim voluptate",
"type": "operation",
"variables": {},
"deprecated": false
},
{
"name": "exercitation",
"summary": "tempor dolor nulla",
"description": "eu minim anim",
"location": "Adapter",
"app": "ut officia",
"displayName": "et voluptate",
"type": "manual",
"variables": {},
"deprecated": false
},
{
"name": "nisi velit consectetur",
"summary": "nisi occaecat dolore sint laborum",
"description": "cupidatat Excepteur qui elit",
"location": "Broker",
"app": "sit quis exercitation ullamco",
"displayName": "et sint nostrud",
"type": "automatic",
"variables": {},
"deprecated": false
},
{
"name": "ut ipsum deserunt qui",
"summary": "eiusmod Ut ut proident nisi",
"description": "Lorem nulla",
"location": "Broker",
"app": "dolor nulla incididunt esse irure",
"displayName": "et",
"type": "manual",
"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"
}
}
}
}