Skip to main content
DELETE
/
volume_templates
/
{volumeTemplateName}
/
versions
/
{versionName}
Delete volume template version
curl --request DELETE \
  --url https://api.blaxel.ai/v0/volume_templates/{volumeTemplateName}/versions/{versionName} \
  --header 'Authorization: Bearer <token>'
{
  "message": "<string>",
  "template": {
    "metadata": {
      "createdAt": "<string>",
      "updatedAt": "<string>",
      "createdBy": "<string>",
      "updatedBy": "<string>",
      "displayName": "<string>",
      "labels": {},
      "name": "<string>",
      "plan": "<any>",
      "url": "<string>",
      "workspace": "<string>"
    },
    "spec": {
      "defaultSize": 123,
      "description": "<string>"
    },
    "state": {
      "lastVersionUploadedAt": "<string>",
      "latestVersion": "<string>",
      "status": "<string>",
      "versionCount": 123
    },
    "versions": [
      {
        "bucket": "<string>",
        "contentSize": 123,
        "name": "<string>",
        "region": "<string>",
        "status": "<string>",
        "templateName": "<string>",
        "versionId": "<string>",
        "workspace": "<string>"
      }
    ]
  }
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

volumeTemplateName
string
required

Name of the volume template

versionName
string
required

Name of the version to delete

Response

Version deleted successfully

message
string
template
object

Volume template for creating pre-configured volumes

I