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": "irure in",
"summary": "velit",
"description": "sunt voluptate",
"location": "Adapter",
"app": "pariatur reprehenderit",
"displayName": "eiusmod minim tempor commodo Excepteur",
"type": "operation",
"deprecated": false
},
{
"name": "aliqua nostrud labore in in",
"summary": "proident",
"description": "enim",
"location": "Adapter",
"app": "magna in ex reprehenderit cillum",
"displayName": "sit proident Duis magna",
"type": "automatic",
"deprecated": true
},
{
"name": "dolor adipisicing",
"summary": "ipsum magna",
"description": "laboris sint ut pariatur voluptate",
"location": "Application",
"app": "ut magna sunt",
"displayName": "veniam id",
"type": "operation",
"deprecated": false
},
{
"name": "mollit",
"summary": "amet proident ut id",
"description": "dolore elit do",
"location": "Application",
"app": "aliquip voluptate",
"displayName": "do sunt incididunt laboris veniam",
"type": "automatic",
"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",
"incoming": {
"type": "object"
},
"outgoing": {
"type": "object"
}
},
"deprecated": {
"type": "boolean"
}
}
}
}