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": "laborum Ut dolor magna",
"summary": "Excepteur eu",
"description": "amet nisi",
"location": "Broker",
"app": "velit do",
"displayName": "laborum sunt veniam",
"type": "manual",
"variables": {},
"deprecated": false
},
{
"name": "quis aliqua",
"summary": "officia",
"description": "incididunt",
"location": "Adapter",
"app": "eiusmod tempor fugiat veniam magna",
"displayName": "cillum laborum",
"type": "manual",
"variables": {},
"deprecated": true
},
{
"name": "enim veniam",
"summary": "deserunt",
"description": "officia Ut esse dolore",
"location": "Broker",
"app": "veniam quis nisi",
"displayName": "Ut",
"type": "operation",
"variables": {},
"deprecated": false
},
{
"name": "ut",
"summary": "ea commodo",
"description": "nulla non",
"location": "Adapter",
"app": "aliquip mollit",
"displayName": "Duis cillum deserunt reprehenderit anim",
"type": "automatic",
"variables": {},
"deprecated": false
},
{
"name": "culpa labore reprehenderit",
"summary": "ut sit nisi",
"description": "laboris ea",
"location": "Adapter",
"app": "nostrud",
"displayName": "sunt reprehenderit proident",
"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"
}
}
}
}