type: error
post:
description: |
<>
___
Parameters in the POST body schema
Name | Type | Description | Example | Default |
``jobschedulerId`` | required, string | JobScheduler Master ID | scheduler | |
``jobs`` | required, array |
Filtered request by a collection of jobs specified by its job path. |
[{
"job":"/sos/reporting/Inventory"
}] |
|
``taskIds`` | optional, array field of each ``jobs`` item |
Filtered request by a collection of task ids. |
[{
"taskId":4711
}] |
|
<>
<>
body:
application/json:
schema: modifyTasks
example: |
{
"jobschedulerId": "scheduler",
"jobs": [{
"job": "/test/testJob1",
"taskIds": [{
"taskId": 4711
}]
}, {
"job": "/sos/housekeeping/scheduler_rotate_log"
}, {
"job": "/test/testJob2"
}, {
"job": "/test/testJob3"
}]
}
responses:
200:
description: It returns an _ok_. This reply code comes only for bulk operations if all commands were successful.
body:
application/json:
schema: ok
example: |
{
"deliveryDate":"2016-05-05T21:13:35Z",
"surveyDate":"2016-05-05T21:13:34Z",
"ok":true
}
419: