RaidDelete

Trigger this action to delete a RAID volume.

Use the HTTP POST method with the resource /mgmt/actionqueue/default, specifying a request payload with the following format:
{
  "RaidDelete": {
    "VolumeName": "name"
    }
}
VolumeName
String
Specify the name of the RAID volume that you want to delete. The name is always raid0.

This action deletes all files and data on the RAID array.

Example

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

{
  "RaidDelete": {
    "VolumeName": "raid0"
    }
}