Summary
Resumes Jobs
Description
Resumes paused Jobs.
Route
POST /operations-manager/jobs/resume
Roles
admin
engineering
apiwrite
operations
Parameters
DetailsExampleSchema
| Name |
Type |
Required |
Description |
| jobIds |
array |
yes |
The ids of the Jobs to resume. |
Copied to Clipboard
{
"jobIds": [
"689545ea65e421cc5beb5496",
"5086e2ad009e30dce11b04f7",
"3e9759bd2063782515e26e04",
"233da412bf137d2101084153",
"9b22b9ebad3c8a53705226dd"
]
}
Copied to Clipboard
{
"type": "object",
"properties": {
"jobIds": {
"title": "jobIds",
"type": "array",
"items": {
"$ref": "common#/definitions/ObjectIdLikeString"
}
}
},
"required": [
"jobIds"
],
"additionalProperties": false
}
Return
DetailsExampleSchema
| Name |
Type |
Description |
| resultMessage |
object |
The result of the resume operation. |
Copied to Clipboard
{
"message": "Successfully created the requested item",
"data": {
"description": "Any successfully retrieved information related to the request."
}
}