DeleteFile
Trigger this action to delete a file from the appliance.
Use the HTTP POST method with the resource
/mgmt/actionqueue/default
, specifying
a request payload with the following
format:{
"DeleteFile": {
"File": "filepath"
}
}
- File
- String
Example
To delete the file named badfile from the temporary:///
directory, post the following payload to
https://yourhost:5554/mgmt/actionqueue/default
:
{
"DeleteFile": {
"File": "temporary:///badfile"
}
}