Skip to main content
POST
/
volc
/
asset
/
DeleteAsset
Delete Asset
curl --request POST \
  --url https://www.anyfast.ai/volc/asset/DeleteAsset \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "model": "volc-asset",
  "Id": "asset-20260528140922-d9646"
}
'
{
  "Id": "asset-20260528140922-d9646",
  "Deleted": true
}

Authorizations

Authorization
string
header
required

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

Body

application/json
Id
string
required

Asset ID to delete.

Example:

"asset-20260528140922-d9646"

model
string

Model name. Default: volc-asset.

Example:

"volc-asset"

Response

Asset deleted

Id
string

Deleted asset ID.

Example:

"asset-20260528140922-d9646"

Deleted
boolean

Whether the asset was deleted.

Example:

true