Skip to main content

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​

NameTypeRequiredDescription
idstringRequiredAsset group ID

Request Example​

GET /api/volc-user/asset-groups/detail?id=group-7f2b8d9c

Response Fields (200)​

NameTypeDescription
successbooleanSuccess flag
messagestringMessage
dataobjectAsset group detail
data.idstringAsset group ID
data.namestringAsset group name
data.descriptionstringAsset group description
data.groupTypestringAsset group type
data.projectNamestringVolcengine project name
data.createTimeintegerCreate time (Unix seconds)
data.updateTimeintegerUpdate time (Unix seconds)
data.remarkstringPlatform 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"
}
}