ApplyPatch

Trigger this action to designate the startup firmware image and restart the appliance with this image.

Use the HTTP POST method with the resource /mgmt/actionqueue/default, specifying a request payload with the following format:
{
  "ApplyPatch": {
    "AcceptLicense": "accept-license",
    "File": "file_name"
   }
}
AcceptLicense
String
Specify "accept-license" to accept the license.
File
String
Specifies the name of the firmware image to boot the appliance with.

Example

To specify the image in the file 180858 and restart the appliance, post the following payload to https://yourhost:5554/mgmt/actionqueue/default:

{
  "ApplyPatch": {
    "AcceptLicense": "accept-license",
    "File": "180858"
   }
}