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": [
"419b4a079dc153e3a2422be2",
"5e0d8ca5a3c45704ed32f119",
"319dfdb1370ee6944f089687",
"e3323fc3c3cd7e3e3b430ebf",
"586a343de60bdcce5981c0af"
]
}
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."
}
}