type: error post: description: |

<>

___

Parameters in the POST body schema

<>
NameTypeDescriptionExampleDefault
``controllerId``optional, stringController ID (can be empty if and only if a new Controller (Cluster) will be registered)scheduler
``controllers``required, arrayControllers of a cluster or one standalone Controller
each Controller has the following fields
``url``required, stringURL of the Controller instance
``clusterUrl``optional, stringOnly for a Cluster: A URL that the Controller instances use to connect to each other``url``
``role``required, stringRole (STANDALONE, PRIMARY or BACKUP) of the Controller
``title``optional, stringA title that is used when displaying the Controller in JOC Cockpit
body: application/json: schema: jsRegister example: | { "controllers": [{ "url": "https://controller-2-0-primary:4443", "title": "PRIMARY", "role": "PRIMARY", "clusterUrl": "https://controller-2-0-primary:4443" }, { "url": "https://controller-2-0-secondary:4443", "role": "BACKUP", "clusterUrl": "https://controller-2-0-secondary:4443", "title": "SECONDARY" }], "controllerId": "testsuite" } responses: 200: description: | **Confirm <> successfully** body: application/json: example: | { "deliveryDate":"2016-05-05T21:13:35Z", "ok":true } schema: ok