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": "enim ullamco quis",
"summary": "voluptate minim culpa sint",
"description": "aliquip cupidatat elit",
"location": "Application",
"app": "incididunt",
"displayName": "ipsum elit cillum",
"type": "operation",
"deprecated": false
},
{
"name": "commodo pariatur dolor et id",
"summary": "eu sit reprehenderit labore occaecat",
"description": "ex sint amet consectetur",
"location": "Adapter",
"app": "enim ex non voluptate",
"displayName": "Excepteur dolore do nisi",
"type": "operation",
"deprecated": false
},
{
"name": "do cupidatat Duis minim",
"summary": "magna",
"description": "Ut aliquip ullamco",
"location": "Broker",
"app": "ex incididunt tempor",
"displayName": "sint dolore",
"type": "operation",
"deprecated": true
},
{
"name": "sint quis",
"summary": "ut nulla laborum dolor labore",
"description": "ut occaecat",
"location": "Adapter",
"app": "sint quis dolore occaecat",
"displayName": "cupidatat ipsum ex",
"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"
}
}
}
}