Delete Asset
DELETE /api/volc-user/assets
Delete a specific asset. Once deleted, the asset cannot be used in subsequent tasks.
Authentication
User console API requiring logged-in user identity (session Cookie, or Authorization: <access_token>, token obtained via Generate Access Token). This token is different from the sk- keys used for model invocation.
⚠️ For assets already referenced by business tasks, ensure the business side no longer needs them before deletion.
Request Parameters
| Name | Type | Required | Description |
|---|---|---|---|
id | string | Required | Asset ID |
Request Example
{
"body": {
"id": "asset-a3c92f10"
}
}
Response Fields (200)
| Name | Type | Description |
|---|---|---|
success | boolean | Success flag |
message | string | Message |
data | object | Response data |
data.id | string | Asset ID |
Response Example
{
"success": true,
"message": "",
"data": {
"id": "asset-a3c92f10"
}
}