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": "magna occaecat incididunt dolor",
"summary": "eu sunt in",
"description": "nostrud minim",
"location": "Adapter",
"app": "sint eiusmod",
"displayName": "nulla tempor aliquip",
"type": "automatic",
"deprecated": true
},
{
"name": "velit",
"summary": "laborum minim culpa Excepteur non",
"description": "Excepteur",
"location": "Application",
"app": "est incididunt quis in tempor",
"displayName": "voluptate tempor aute nisi",
"type": "automatic",
"deprecated": true
},
{
"name": "esse dolor",
"summary": "amet ex sed eiusmod veniam",
"description": "aliqua ad Duis reprehenderit commodo",
"location": "Adapter",
"app": "elit nostrud dolor Duis non",
"displayName": "Duis",
"type": "automatic",
"deprecated": true
},
{
"name": "non consectetur reprehenderit quis",
"summary": "deserunt dolore amet ex enim",
"description": "sed non",
"location": "Adapter",
"app": "ex",
"displayName": "eiusmod aute commodo Ut sed",
"type": "manual",
"deprecated": false
},
{
"name": "Duis ex ullamco",
"summary": "ut minim Ut commodo velit",
"description": "nisi et aute tempor",
"location": "Broker",
"app": "aliqua adipisicing voluptate eu dolore",
"displayName": "ea non minim Excepteur Lorem",
"type": "operation",
"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"
}
}
}
}