版本:202506
更新商品专辑
PUT/openapi/2025-06/collections/:id
通过唯一 ID 与请求体内容更新已有商品专辑的详细信息。
请求
Path参数
id string必填
待更新的专辑 ID(UUID 格式)
- application/json
- 请求体
- 示例
请求体必填
manual:手动排序(默认)sales-desc:按总销量从高到低price-asc:按售价从低到高price-desc:按售价从高到低views-desc:按浏览人气从高到低vendor-asc:按供应商 A-Z 展示vendor-desc:按供应商 Z-A 展示created-desc:按创建时间从近到远:intelligent:智能推荐排序
collection object必填
待更新的专辑数据
titlestring
专辑名称
handlestring
专辑 handle(URL 友好的唯一别名)
descriptionstring
专辑描述
image object
专辑封面
srcstring必填
专辑封面的源 URL
widthint32
专辑封面宽度(单位:像素)
heightint32
专辑封面高度(单位:像素)
altstring
专辑封面的替代文本(alt)
seo_titlestring
专辑的 SEO 标题
seo_keywordsstring[]
SEO 关键词列表
seo_descriptionstring
专辑的 SEO 描述
sort_orderstring
专辑内商品的排序规则,可选值:
默认值:
manualproduct_idsstring[]
要加入专辑的商品 ID 列表,必须为有效的 UUID
{
"collection": {
"title": "string",
"handle": "string",
"description": "string",
"image": {
"src": "string",
"width": 0,
"height": 0,
"alt": "string"
},
"seo_title": "string",
"seo_keywords": [
"string"
],
"seo_description": "string",
"sort_order": "manual",
"product_ids": [
"string"
]
}
}
响应
- 200
OK
- application/json
- 数据结构
- 示例
数据结构
codestring
错误码
messagestring
错误信息
data object
collection object
已更新的专辑
idstring
专辑 ID
titlestring
专辑名称
descriptionstring
专辑描述
handlestring
专辑 handle(URL 友好的唯一别名)
smartboolean
是否为智能专辑(满足条件的商品自动加入)
image object
专辑封面
srcstring
图片源 URL
widthint32
宽度尺寸
heightint32
高度尺寸
altstring
图片替代文本
seo_titlestring
专辑的 SEO 标题
seo_keywordsstring[]
SEO 关键词列表
seo_descriptionstring
专辑的 SEO 描述
sort_orderstring
专辑内商品的排序规则(取值见创建专辑接口)
created_atstring
专辑创建时间(ISO-8601 格式)
updated_atstring
专辑最后更新时间(ISO-8601 格式)
{
"code": "string",
"message": "string",
"data": {
"collection": {
"id": "string",
"title": "string",
"description": "string",
"handle": "string",
"smart": true,
"image": {
"src": "string",
"width": 0,
"height": 0,
"alt": "string"
},
"seo_title": "string",
"seo_keywords": [
"string"
],
"seo_description": "string",
"sort_order": "string",
"created_at": "string",
"updated_at": "string"
}
}
}