Shutdown

Trigger this action to shutdown or restart the appliance.

Use the HTTP POST method with the resource /mgmt/actionqueue/default, specifying a request payload with the following format:
{
  "Shutdown": {
    "Mode": "mode",
    "Delay": seconds
  }
}
Mode
String
Specify the shutdown mode:
  • reload - Reloads the firmware.
  • reboot - Restarts the appliance.
  • poweroff - Stops the appliance and turns off the power.
Delay
Int

Specifies the number of seconds before a shutdown operation starts. Enter a value in the range 0 - 65535. The default value is 10.

Example

To stop the appliance and turn of the power in two minutes time, post the following payload to https://yourhost:5554/mgmt/actionqueue/default:

{
  "Shutdown": {
    "Mode": "poweroff",
    "Delay": 120
  }
}