Skip to main content

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​

NameTypeRequiredDescription
idstringRequiredAsset ID
namestringOptionalNew asset name
remarkstringOptionalNew 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)​

NameTypeDescription
successbooleanSuccess flag
messagestringMessage
dataobjectResponse data
data.idstringAsset ID

Response Example​

{
"success": true,
"message": "",
"data": {
"id": "asset-a3c92f10"
}
}