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
| Name | Type | Required | Description |
|---|---|---|---|
id | string | Required | Asset group ID |
name | string | Optional | New asset group name |
description | string | Optional | New 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)
| Name | Type | Description |
|---|---|---|
success | boolean | Success flag |
message | string | Message |
data | object | Response data |
data.id | string | Asset group ID |
Response Example
{
"success": true,
"message": "",
"data": {
"id": "group-7f2b8d9c"
}
}