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": "irure nisi culpa laboris aute",
"summary": "deserunt occaecat ullamco et dolor",
"description": "in consectetur cupidatat mollit Ut",
"location": "Application",
"app": "consequat dolore",
"displayName": "commodo eiusmod cupidatat culpa ipsum",
"type": "automatic",
"variables": {},
"deprecated": true
},
{
"name": "ullamco sint voluptate",
"summary": "sit",
"description": "in",
"location": "Application",
"app": "minim",
"displayName": "ad ex officia aliqua qui",
"type": "operation",
"variables": {},
"deprecated": false
},
{
"name": "proident sed dolore est",
"summary": "consequat est culpa exercitation",
"description": "est mollit id",
"location": "Adapter",
"app": "fugiat incididunt magna",
"displayName": "deserunt reprehenderit et ullamco cupidatat",
"type": "manual",
"variables": {},
"deprecated": true
},
{
"name": "qui amet",
"summary": "do nulla",
"description": "enim pariatur laborum quis",
"location": "Adapter",
"app": "in",
"displayName": "et ad aliquip",
"type": "operation",
"variables": {},
"deprecated": false
},
{
"name": "nostrud irure",
"summary": "irure eu dolore elit nisi",
"description": "dolor exercitation",
"location": "Adapter",
"app": "anim esse ex Ut deserunt",
"displayName": "exercitation",
"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"
}
}
}
}