Skip to main content

Delete Instant Clone Snapshot

API for snap instant clone delete operation

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

    Array of volumes to include for the operation

  • smVolumeId int32 required

    smVolumeId of the snap

  • commCellId int32

    Default value: 2

    Commcell Id of the setup

  • mountVolumeIds int32[]

    Volume Ids of the Snaps to include for multi node unmount or instant clone delete

Responses

OK


Schema
  • jobId int32

    Resulting job Id

  • errorCode int32

    error code

  • errorMessage string

    error message

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

Authorization

type: apiKeyname: Authtokenin: header

Request

Click Edit to configure Base URL
https://localhost/webconsole/api
token
arrayId — path required
Body
{
"volume": [
{
"smVolumeId": 0,
"commCellId": 2
}
],
"mountVolumeIds": [
0
]
}
curl -L -X POST 'https://localhost/webconsole/api/V4/StorageArrays/:arrayId/Snaps/InstantClone/Delete' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
-H 'Authtoken: <API_KEY_VALUE>' \
--data-raw '{
"volume": [
{
"smVolumeId": 0,
"commCellId": 2
}
],
"mountVolumeIds": [
0
]
}'