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": "tempor ullamco dolore exercitation amet",
"summary": "occaecat",
"description": "aliqua laboris velit consectetur Lorem",
"location": "Application",
"app": "adipisicing",
"displayName": "incididunt officia ex sunt elit",
"type": "operation",
"deprecated": false
},
{
"name": "aliqua sit adipisicing ad laboris",
"summary": "minim",
"description": "reprehenderit sint",
"location": "Application",
"app": "nulla qui",
"displayName": "sit culpa dolore",
"type": "manual",
"deprecated": false
},
{
"name": "in in irure",
"summary": "dolor officia labore",
"description": "id voluptate qui do",
"location": "Application",
"app": "voluptate occaecat proident veniam",
"displayName": "Ut occaecat cupidatat",
"type": "automatic",
"deprecated": false
},
{
"name": "reprehenderit eu dolore laborum",
"summary": "aute eiusmod",
"description": "ex laboris culpa amet enim",
"location": "Application",
"app": "Excepteur laboris fugiat consectetur aliquip",
"displayName": "ipsum Ut",
"type": "automatic",
"deprecated": true
},
{
"name": "adipisicing minim amet",
"summary": "ex id ad enim anim",
"description": "ea proident",
"location": "Adapter",
"app": "laborum",
"displayName": "qui",
"type": "automatic",
"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",
"incoming": {
"type": "object"
},
"outgoing": {
"type": "object"
}
},
"deprecated": {
"type": "boolean"
}
}
}
}