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": "aliqua ipsum ut do commodo",
"summary": "adipisicing ex sunt et occaecat",
"description": "aute",
"location": "Adapter",
"app": "enim laboris",
"displayName": "dolor aute irure Lorem ullamco",
"type": "operation",
"variables": {},
"deprecated": false
},
{
"name": "minim Lorem aliqua cillum",
"summary": "amet",
"description": "consectetur",
"location": "Adapter",
"app": "eu in enim officia",
"displayName": "sed",
"type": "operation",
"variables": {},
"deprecated": true
},
{
"name": "aute",
"summary": "sint ut",
"description": "in nostrud",
"location": "Adapter",
"app": "esse",
"displayName": "commodo mollit",
"type": "automatic",
"variables": {},
"deprecated": false
},
{
"name": "et exercitation labore",
"summary": "eu proident dolor reprehenderit",
"description": "qui",
"location": "Application",
"app": "laboris sint",
"displayName": "veniam incididunt qui laborum",
"type": "automatic",
"variables": {},
"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",
"properties": {
"incoming": {
"type": "object"
},
"outgoing": {
"type": "object"
}
}
},
"deprecated": {
"type": "boolean"
}
}
}
}