Summary
Get a Manual Task's Controller
Description
Get a manual Task's controller by Task ID.
Route
GET /workflow_engine/tasks/controller/job/:jobId/task/:taskId
Roles
admin
engineering
support
apiread
Parameters
DetailsExampleSchema
| Name |
Type |
Required |
Description |
| jobId |
string |
yes |
ID of the job to get controller. |
| taskId |
string |
yes |
ID of the Task to get controller. |
Copied to Clipboard
{
"type": "object",
"properties": {},
"required": [],
"additionalProperties": false
}
Return
DetailsExampleSchema
| Name |
Type |
Description |
| task |
object |
Controller of the Task. |
Copied to Clipboard
{
"variables": {
"incoming": {
"inputVariable": "inputValue"
},
"outgoing": {
"outputVariable": null
},
"error": "",
"decorators": [
{
"type": "encryption",
"pointer": "nostrud sed voluptate"
},
{
"type": "encryption",
"pointer": "aliquip Excepteur adipisicing dolore"
},
{
"type": "encryption",
"pointer": "cupidatat culpa quis sunt"
},
{
"type": "encryption",
"pointer": "mollit cupidatat fugiat culpa"
},
{
"type": "encryption",
"pointer": "anim in commodo"
}
]
},
"finish_state": "loop",
"TaskController": "function TaskController() {...}"
}