Summary
Unwatch Jobs
Description
Removes the current user from the list of watchers on multiple Jobs.
Route
POST /operations-manager/jobs/unwatch
Roles
admin
apiwrite
engineering
operations
Parameters
DetailsExampleSchema
| Name |
Type |
Required |
Description |
| jobIds |
array |
yes |
- |
Copied to Clipboard
{
"jobIds": [
"333ed1cbfabeae00eacb4a7d",
"198af9f9b9a522f7f7901032",
"dc8cb04fbe35a8b9197a13d3",
"b933e1e9339f7cf2fe6f6a38",
"d1eb0a94176bd795a5b681fc"
]
}
Copied to Clipboard
{
"type": "object",
"properties": {
"jobIds": {
"title": "jobIds",
"type": "array",
"items": {
"description": "The id of a Job to unwatch.",
"$ref": "common#/definitions/ObjectIdLikeString"
}
}
},
"required": [
"jobIds"
],
"additionalProperties": false
}
Return
DetailsExampleSchema
| Name |
Type |
Description |
| result |
object |
The result of the unwatch operation. |
Copied to Clipboard
{
"message": "Successfully imported 3 of 4 documents",
"data": {
"description": "Any successfully retrieved information related to the request."
}
}