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": "sint minim laboris culpa ex",
"summary": "sint",
"description": "ullamco Excepteur",
"location": "Application",
"app": "in cillum",
"displayName": "exercitation in enim",
"type": "automatic",
"variables": {},
"deprecated": true
},
{
"name": "dolore consectetur ipsum laboris laborum",
"summary": "ipsum dolor",
"description": "dolor Lorem",
"location": "Application",
"app": "est laborum officia et",
"displayName": "dolore non eu",
"type": "manual",
"variables": {},
"deprecated": false
},
{
"name": "quis",
"summary": "enim aute deserunt dolore",
"description": "cupidatat nulla incididunt dolore eiusmod",
"location": "Adapter",
"app": "Ut",
"displayName": "esse officia",
"type": "automatic",
"variables": {},
"deprecated": false
},
{
"name": "magna aute",
"summary": "eiusmod ut laboris occaecat",
"description": "sunt ea non Ut cupidatat",
"location": "Application",
"app": "Lorem esse deserunt id laboris",
"displayName": "elit dolore laborum consequat in",
"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"
}
}
}
}