Skip to main content

Unmount Snapshot of Storage Array

Select

SaaS
Customer Managed

Unmounting a mounted Snapshot from Storage Array

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

    Volumes of the snap you want to unmount

  • 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/unmount    

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/Unmount' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
-H 'Authtoken: <API_KEY_VALUE>' \
--data-raw '{
"volumes": [
{
"smVolumeId": 0,
"flags": 0
}
]
}'