ExecConfig

Trigger this action to execute a configuration file.

Use the HTTP POST method with the resource /mgmt/actionqueue/default, specifying a request payload with the following format:
{
  "ExecConfig": {
    "URL": "filepath"
    }
}
URL
String

Specifies the location of the configuration file as a URL in the directory:///file format.

Example

To execute the configuration file config:///housekeeping.cfg, post the following payload to https://yourhost:5554/mgmt/actionqueue/default:

{
  "ExecConfig": {
    "URL": "config:///housekeeping.cfg"
    }
}