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": "sunt tempor dolor culpa",
"summary": "veniam irure eiusmod ut nostrud",
"description": "non exercitation in Ut sed",
"location": "Application",
"app": "Duis",
"displayName": "consequat",
"type": "operation",
"variables": {},
"deprecated": false
},
{
"name": "voluptate",
"summary": "laborum occaecat cupidatat ex sunt",
"description": "nulla consequat ex commodo",
"location": "Application",
"app": "aliquip exercitation dolor laboris",
"displayName": "nisi ut",
"type": "automatic",
"variables": {},
"deprecated": false
},
{
"name": "Excepteur",
"summary": "dolore ut aliquip officia",
"description": "qui occaecat",
"location": "Application",
"app": "exercitation",
"displayName": "Lorem dolore",
"type": "manual",
"variables": {},
"deprecated": false
},
{
"name": "ea aliqua est dolor",
"summary": "in qui minim ad Lorem",
"description": "veniam cillum",
"location": "Adapter",
"app": "culpa Lorem tempor",
"displayName": "elit non dolor reprehenderit",
"type": "automatic",
"variables": {},
"deprecated": false
},
{
"name": "proident elit ex anim",
"summary": "proident velit",
"description": "minim ullamco velit exercitation elit",
"location": "Adapter",
"app": "amet Ut dolore",
"displayName": "irure non",
"type": "operation",
"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"
}
}
}
}