素材组 Action
查询素材组详情
火山文档原文GetAssetGroup - 查询单个素材资产组合
AuthorizationBearer <token>
兼容网关 API Key,例如 sk-...。
In: header
Query Parameters
Action*string
Default
"GetAssetGroup"Version*string
Default
"2024-01-01"Header Parameters
X-Date?string
使用 HMAC-SHA256 时必填,格式为 YYYYMMDDTHHMMSSZ。
X-Content-Sha256?string
使用 HMAC-SHA256 时必填,请求体 SHA-256 小写十六进制。
Request Body
application/json
Id*string
素材组 ID。
ProjectName?string
资源所属项目名称,大小写敏感。省略时使用 default。
Default
"default"Response Body
application/json
application/json
curl -X POST "https://jieyun.cc/?Action=GetAssetGroup&Version=2024-01-01" \ -H "Content-Type: application/json" \ -d '{ "Id": "group-202607210001-example", "ProjectName": "default" }'{
"ResponseMetadata": {
"RequestId": "20260721000000000000000000000000",
"Action": "GetAssetGroup",
"Version": "2024-01-01",
"Service": "ark",
"Region": "cn-beijing"
},
"Result": {
"Id": "group-202607210001-example",
"Name": "产品素材",
"Description": "产品图片和视频素材",
"GroupType": "AIGC",
"ProjectName": "default",
"CreateTime": "2026-07-21T00:00:00Z",
"UpdateTime": "2026-07-21T00:00:00Z"
}
}{
"ResponseMetadata": {
"RequestId": "string",
"Action": "GetAssetGroup",
"Version": "2024-01-01",
"Service": "ark",
"Region": "cn-beijing",
"Error": {
"Code": "string",
"Message": "string"
}
}
}Empty
Empty
Empty
Empty
接口说明
根据素材组 ID 查询单个 Asset Group 的详细信息。本文档已按火山引擎官方接口说明校对。
POST https://jieyun.cc/?Action=GetAssetGroup&Version=2024-01-01
Content-Type: application/json
Authorization: Bearer <API_KEY>也可使用 AK/SK HMAC-SHA256 签名,详见素材库认证与签名。
请求参数
| 字段 | 类型 | 必选 | 说明 |
|---|---|---|---|
Id | string | 是 | 素材组 ID。 |
ProjectName | string | 否 | 素材组所属项目,默认 default,大小写敏感。 |
{
"Id": "group-2026-example",
"ProjectName": "default"
}响应内容
| 字段 | 类型 | 说明 |
|---|---|---|
Id | string | 素材组 ID。 |
Name | string | 素材组名称,最长 64 个字符。 |
Description | string | 素材组描述,最长 300 个字符。 |
GroupType | string | AIGC(虚拟人像)或 LivenessFace(真人素材)。 |
ProjectName | string | 所属项目名称。 |
CreateTime | string | 创建时间。 |
UpdateTime | string | 更新时间。 |