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": "tempor",
"summary": "reprehenderit",
"description": "laboris dolor labore Ut",
"location": "Adapter",
"app": "culpa aliqua",
"displayName": "veniam",
"type": "manual",
"deprecated": false
},
{
"name": "in labore",
"summary": "laborum",
"description": "eu esse",
"location": "Broker",
"app": "eu consectetur",
"displayName": "do adipisicing qui",
"type": "operation",
"deprecated": true
},
{
"name": "do proident enim sunt",
"summary": "non anim",
"description": "pariatur commodo cupidatat velit",
"location": "Application",
"app": "est velit",
"displayName": "et",
"type": "operation",
"deprecated": false
},
{
"name": "labore ad",
"summary": "commodo laboris magna qui nisi",
"description": "veniam culpa",
"location": "Adapter",
"app": "et aliquip in voluptate sint",
"displayName": "in ad",
"type": "automatic",
"deprecated": false
},
{
"name": "quis non",
"summary": "ex",
"description": "laboris qui sint cupidatat",
"location": "Adapter",
"app": "nostrud ea anim culpa",
"displayName": "sint occaecat",
"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"
}
}
}
}