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": "sit proident",
"summary": "esse dolor fugiat do nostrud",
"description": "sed exercitation in aliqua",
"location": "Adapter",
"app": "anim enim",
"displayName": "et incididunt quis aute",
"type": "manual",
"variables": {},
"deprecated": false
},
{
"name": "aute cupidatat",
"summary": "dolore ut laborum ex nulla",
"description": "nostrud est anim",
"location": "Adapter",
"app": "incididunt",
"displayName": "exercitation eu velit",
"type": "automatic",
"variables": {},
"deprecated": true
},
{
"name": "nisi ut pariatur labore nulla",
"summary": "cupidatat sint cillum ea",
"description": "tempor ipsum ut",
"location": "Application",
"app": "amet laboris in",
"displayName": "irure mollit esse exercitation magna",
"type": "operation",
"variables": {},
"deprecated": true
},
{
"name": "exercitation qui in",
"summary": "eiusmod nostrud",
"description": "sed occaecat",
"location": "Application",
"app": "Ut ex",
"displayName": "proident labore officia",
"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"
}
}
}
}