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": [
"aaadfcfd084b303b49427b2f",
"1868e121bc80c2ebcc19523f",
"d652840abbdfd4806c0a7c8a",
"157ab7c02d89179cde5697e6",
"c17c06aeed104b39e28d8d39"
]
}
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."
}
}