Skip to main content
DELETE
/
images
/
{resourceType}
/
{imageName}
/
tags
/
{tagName}
Delete image tag
curl --request DELETE \
  --url https://api.blaxel.ai/v0/images/{resourceType}/{imageName}/tags/{tagName} \
  --header 'Authorization: Bearer <token>'
{
  "metadata": {
    "createdAt": "<string>",
    "displayName": "<string>",
    "lastDeployedAt": "<string>",
    "name": "<string>",
    "resourceType": "<string>",
    "updatedAt": "<string>",
    "workspace": "<string>"
  },
  "spec": {
    "size": 123,
    "tags": [
      {
        "createdAt": "<string>",
        "name": "<string>",
        "size": 123,
        "updatedAt": "<string>"
      }
    ]
  }
}

Authorizations

Authorization
string
header
required

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

Path Parameters

resourceType
string
required

Resource type of the image

imageName
string
required

Name of the image

tagName
string
required

Name of the tag to delete

Response

successful operation

metadata
object

Metadata for the image.

spec
object

Specification for the image.