SecureBackup
Trigger this action to create a secure backup of the appliance configuration.
Use the HTTP POST method with the resource
/mgmt/actionqueue/default, specifying
a request payload with the following format:{
"SecureBackup": {
"cert": {
"value": "certificate"
},
"destination": "destination"
}
}
- certificate
- String
- destination
- String
Example
To create a secure backup in the temporary:///myBackupDir/ folder using the
myCert certificate, post the following payload to
https://yourhost:5554/mgmt/actionqueue/default:{
"SecureBackup": {
"cert": {
"value": "myCert"
},
"destination": "temporary:///myBackupDir/"
}
}