Summary
Watch Jobs
Description
Adds the current user to the list of watchers on multiple Jobs.
Route
POST /operations-manager/jobs/watch
Roles
admin
apiwrite
engineering
operations
Parameters
DetailsExampleSchema
| Name |
Type |
Required |
Description |
| jobIds |
array |
yes |
- |
Copied to Clipboard
{
"jobIds": [
"2bb9a66b069877c35efda291",
"edb33316b3ca7b9d968a1413",
"328c6c8ed6200f902fe4d2dc",
"6f3623a8c0d95b79b83918b4",
"9e1d8da1e41949503f1aad41"
]
}
Copied to Clipboard
{
"type": "object",
"properties": {
"jobIds": {
"title": "jobIds",
"type": "array",
"items": {
"description": "The id of a Job watch.",
"$ref": "common#/definitions/ObjectIdLikeString"
}
}
},
"required": [
"jobIds"
],
"additionalProperties": false
}
Return
DetailsExampleSchema
| Name |
Type |
Description |
| result |
object |
The result of the watch operation. |
Copied to Clipboard
{
"message": "Successfully retrieved search results",
"data": {
"description": "Any successfully retrieved information related to the request."
}
}