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": "sint et non reprehenderit ad",
"summary": "incididunt sint tempor",
"description": "est proident do laborum nulla",
"location": "Broker",
"app": "irure nulla sint",
"displayName": "cupidatat Excepteur ut",
"type": "operation",
"deprecated": true
},
{
"name": "deserunt elit consectetur culpa occaecat",
"summary": "incididunt",
"description": "dolore dolore sed aliqua",
"location": "Adapter",
"app": "aliquip",
"displayName": "Excepteur in",
"type": "operation",
"deprecated": true
},
{
"name": "proident",
"summary": "aute Duis commodo velit",
"description": "ullamco",
"location": "Application",
"app": "ullamco fugiat",
"displayName": "nulla tempor",
"type": "manual",
"deprecated": true
},
{
"name": "veniam",
"summary": "officia exercitation deserunt laborum ullamco",
"description": "mollit",
"location": "Application",
"app": "veniam",
"displayName": "consequat officia dolor dolore",
"type": "operation",
"deprecated": true
},
{
"name": "anim irure",
"summary": "elit non",
"description": "in id laboris tempor",
"location": "Broker",
"app": "laborum Ut consequat ex",
"displayName": "tempor",
"type": "operation",
"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",
"incoming": {
"type": "object"
},
"outgoing": {
"type": "object"
}
},
"deprecated": {
"type": "boolean"
}
}
}
}