Query Asset Group Detail
GET /api/volc-user/asset-groups/detail
Query detailed information for a specific asset group.
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.
Query Parameters
| Name | Type | Required | Description |
|---|---|---|---|
id | string | Required | Asset group ID |
Request Example
GET /api/volc-user/asset-groups/detail?id=group-7f2b8d9c
Response Fields (200)
| Name | Type | Description |
|---|---|---|
success | boolean | Success flag |
message | string | Message |
data | object | Asset group detail |
data.id | string | Asset group ID |
data.name | string | Asset group name |
data.description | string | Asset group description |
data.groupType | string | Asset group type |
data.projectName | string | Volcengine project name |
data.createTime | integer | Create time (Unix seconds) |
data.updateTime | integer | Update time (Unix seconds) |
data.remark | string | Platform remark, typically same as description |
Response Example
{
"success": true,
"message": "",
"data": {
"id": "group-7f2b8d9c",
"name": "Product Model Asset Group",
"description": "Images and videos for product short video generation",
"groupType": "AIGC",
"projectName": "default_project",
"createTime": 1718000000,
"updateTime": 1718000000,
"remark": "Images and videos for product short video generation"
}
}