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

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

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