UndoConfig

Trigger this action to revert to the last saved configuration.

Use the HTTP POST method with the resource /mgmt/actionqueue/default, specifying a request payload with the following format:
{
  "UndoConfig": {
    "Class": "config_type",
    "Name": "config_name"
    }
}
Class
String
The type of configuration that you are reverting.
Name
String
The name of the configuration that you are reverting.

Example

To , post the following payload to https://yourhost:5554/mgmt/actionqueue/default:

{
  "UndoConfig": {
    "Class": "config_type",
    "Name": "config_name"
    }
}