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": "qui enim id commodo in",
"summary": "sit reprehenderit velit",
"description": "ad nostrud",
"location": "Adapter",
"app": "ut cupidatat fugiat",
"displayName": "in",
"type": "automatic",
"deprecated": false
},
{
"name": "Excepteur ipsum est",
"summary": "irure mollit sint amet",
"description": "ut",
"location": "Broker",
"app": "aute sunt ut",
"displayName": "aliqua in",
"type": "operation",
"deprecated": false
},
{
"name": "pariatur nostrud aute",
"summary": "deserunt",
"description": "aliqua dolor deserunt qui sint",
"location": "Application",
"app": "sed minim laboris culpa",
"displayName": "nostrud commodo",
"type": "manual",
"deprecated": false
},
{
"name": "veniam reprehenderit tempor",
"summary": "non tempor",
"description": "in nisi dolor ut",
"location": "Adapter",
"app": "cillum deserunt magna ut",
"displayName": "fugiat ut sed",
"type": "automatic",
"deprecated": true
},
{
"name": "in",
"summary": "qui ad non ut",
"description": "anim magna dolor",
"location": "Broker",
"app": "nisi in qui voluptate",
"displayName": "consequat do",
"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"
}
}
}
}