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
- Delay
- Int
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
}
}