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": "ullamco et nostrud Ut",
"summary": "do",
"description": "consequat in labore exercitation in",
"location": "Application",
"app": "adipisicing proident minim dolor",
"displayName": "exercitation aute consectetur ut",
"type": "automatic",
"variables": {},
"deprecated": false
},
{
"name": "culpa incididunt sit",
"summary": "veniam aute",
"description": "velit qui minim",
"location": "Broker",
"app": "ut Ut ipsum",
"displayName": "est sunt anim mollit exercitation",
"type": "automatic",
"variables": {},
"deprecated": false
},
{
"name": "elit proident in Duis",
"summary": "exercitation non amet eiusmod",
"description": "id",
"location": "Broker",
"app": "dolore aliqua proident ut",
"displayName": "velit dolore laborum aute",
"type": "automatic",
"variables": {},
"deprecated": true
},
{
"name": "dolore officia minim",
"summary": "nulla non",
"description": "adipisicing veniam cillum eu in",
"location": "Application",
"app": "reprehenderit veniam",
"displayName": "amet reprehenderit consectetur aliqua anim",
"type": "manual",
"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"
}
}
}
}