type: error post: description: |

<>

___

Parameters in the POST body schema

<> <> <> <> <> <> <> <>
NameTypeDescriptionExampleDefault
``controllerId``required, stringController IDmyController
``orderIds``optional, array Specified the order ids which should be modified.
If this parameter is specified then the parameters ``workflowIds``, ``folders`` and ``states`` where applicable are ignored.
[
"daily"
]
``workflowIds``optional, array[object] Filtered response by a collection of workflows specified by its path and optional version
If this parameter is specified the parameter ``folders`` where applicable are ignored.
[{
"path": "/path/to/workflow",
"versionId": "c79caab4-4e72-4818-bae7-902f1037d8b6"
}]
``path``required, stringField for each item in ``workflowIds`` to specify the path of a workflow
``version``optional, stringField for each in ``workflowIds`` to specify the version of a workflow
``folders``optional, array[object]Limits the result to a collection of folders [{
"folder": "/sos",
"recursive": true
}]
``states``optional, array Filtered all orders with states such as
  • PENDING
  • SCHEDULED
  • INPROGRESS
  • RUNNING
  • SUSPENDED
  • WAITING
  • PROMPTING
  • FAILED
  • BLOCKED
["SUSPENDED"]
body: application/json: schema: modifyOrders example: | { "controllerId": "myController", "orderIds": [ "order1", "order2", "order3", "order4", "order5" ] } 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":"2020-08-24T21:13:35Z", "surveyDate":"2020-08-24T21:13:34Z", "ok":true } 419: