Update Asset
PUT /api/volc-user/assets
Update asset name and platform remark. Volcengine currently only supports updating the asset name.
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.
Request Parameters
| Name | Type | Required | Description |
|---|---|---|---|
id | string | Required | Asset ID |
name | string | Optional | New asset name |
remark | string | Optional | New platform remark |
⚠️ Empty strings will not clear existing values; only non-empty fields will be updated.
Request Example
{
"body": {
"id": "asset-a3c92f10",
"name": "Model Front Image - Updated",
"remark": "External asset ID: ext-10001, name updated"
}
}
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"
}
}