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
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"
}
}