Summary
Get a client-side dialog controller for a manual task
Description
Get a client-side dialog controller for a manual task
Route
GET /operations-manager/jobs/:jobId/tasks/:taskId/manual-controller
Roles
admin
apiread
engineering
operations
Parameters
DetailsExampleSchema
Name |
Type |
Required |
Description |
jobId |
string |
yes |
The id of the Job containing the task |
taskId |
string |
yes |
The id of the Task containing the dialog controller. |
Copied to Clipboard
{
"type": "object",
"properties": {},
"required": [],
"additionalProperties": false
}
Return
DetailsExampleSchema
Name |
Type |
Description |
result |
object |
The requested dialog controller. |
Copied to Clipboard
{
"message": "Successfully retrieved search results",
"data": {
"variables": {
"error": "dolor consectetur amet",
"decorators": [
{
"type": "encryption",
"pointer": "/~0/~1/KW"
},
{
"type": "encryption",
"pointer": "/~0/Ca/fTa09IapM/~0/~1"
},
{
"type": "encryption",
"pointer": "/~1/aI,Q/xPV00y8U/UhAhIh,xEof/noM2k9c/~1/ad/~0"
},
{
"type": "encryption",
"pointer": "/~0/CBu7r/3O6t/~0/~1/~0/~1/R+Bt/DgRgp/~0/~0"
}
]
},
"finish_state": "aliqua commodo elit",
"TaskController": "sint qui dolor in consectetur"
}
}
Copied to Clipboard
{
"title": "result",
"allOf": [
{
"$ref": "common-api#/definitions/success-response"
},
{
"type": "object",
"properties": {
"data": {
"type": "object",
"properties": {
"variables": {
"type": "object",
"properties": {
"incoming": {
"type": "object"
},
"outgoing": {
"type": "object"
},
"error": {
"type": "string"
},
"decorators": {
"$ref": "common#/definitions/decorators"
}
}
},
"finish_state": {
"type": "string"
},
"TaskController": {
"type": "string",
"description": "A Javascript function named TaskController."
}
}
}
}
}
]
}