start
(Available in Brekeke UC version 1.7.3.1 and later)
Start Brekeke UC.
To perform this operation, you must specify the allowed IP addresses using regular expressions. If you want to use a password, set it in Advanced Options. Changes to Advanced Options take effect immediately. If you do not want to use a password, there is no need to set it in Advanced Options.
Advanced Options Properties:
webif.v1p.db.hosts.allow=<IP address> webif.v1p.db.password=<password>
Operation:
v1p/db/start
Operation parameters:
| No. | Parameters | Note |
| 1 | password | Operation execution password (if required) |
Response Code:
| Response Code | Note |
| 200 OK. | Successful start or started |
| 400 Bad Request. | Parameter error or password mismatch |
| 403 Forbidden. | No access (IP restrictions, etc.) |
| 503 Service Unavailable. | Unable to run for some reason (during startup, etc.) |
Example 1: No password
curl -X POST "https://<uc-url>/webif/v1p/db/start"
Example 2: With a password
curl -X POST --header "Content-Type: application/json" --data "{\"password\":\"123abc@%&\"}" "https://<uc-url>/webif/v1p/db/start"
