Skip to main content

Delete Storage Array Snapshot

Select

SaaS
Customer Managed

Deleting an unmounted or created snapshot from Storage Arrays

Path Parameters
  • arrayId int32 required
Request Body
  • volumes object[]

    Volumes of the snaps you want to delete

  • smVolumeId int32

    smVolumeId of the snaps you want to mount/unmount/delete

  • flags int32

    Volume flags to be set for snap Operations.

Responses

OK


Schema
  • jobId int32

    Resulting job Id

  • errorCode int32

    error code

  • errorMessage string

    error message

POST /v4/storagearrays/:arrayid/snaps/delete    

Authorization

type: apiKeyname: Authtokenin: header

Request

Click Edit to configure Base URL
https://CommandCenterHostName/commandcenter/api
Security Scheme
token
arrayId — path required
Body
{
"volumes": [
{
"smVolumeId": 0,
"flags": 0
}
]
}
curl -L -X POST 'https://CommandCenterHostName/commandcenter/api/V4/StorageArrays/:arrayId/Snaps/Delete' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
-H 'Authtoken: <API_KEY_VALUE>' \
--data-raw '{
"volumes": [
{
"smVolumeId": 0,
"flags": 0
}
]
}'