Skip to main content

Update Asset Group

PUT /api/volc-user/asset-groups

Update an asset group's name and description. Volcengine currently supports updating Name and Description.

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 group ID
namestringOptionalNew asset group name
descriptionstringOptionalNew asset group description

⚠️ Empty strings will not clear existing values; only non-empty fields will be updated.

Request Example​

{
"body": {
"id": "group-7f2b8d9c",
"name": "Product Model Asset Group - Updated",
"description": "Updated for new product video generation"
}
}

Response Fields (200)​

NameTypeDescription
successbooleanSuccess flag
messagestringMessage
dataobjectResponse data
data.idstringAsset group ID

Response Example​

{
"success": true,
"message": "",
"data": {
"id": "group-7f2b8d9c"
}
}