# 更新展品合集
# 调用方式: PUT
# 接口地址:
https://api.freelog.com/v2/presentables/catalogues/{presentableId}
1
# url传入参数说明:
参数 | 必选 | 类型及范围 | 说明 |
---|---|---|---|
presentableId | 必选 | string | 合集展品ID |
# body传入参数说明:
参数 | 必选 | 类型及范围 | 说明 |
---|---|---|---|
catalogueProperty | 可选 | object[] | 目录属性 |
** collection_sort_list | 必选 | string | 排序方式;可选值collection_sort_ascending,collection_sort_descending |
# body示例
{
"catalogueProperty": {
"collection_sort_list": "collection_sort_ascending"
}
}
1
2
3
4
5
2
3
4
5
# 返回说明:
返回值字段 | 字段类型 | 字段说明 |
---|---|---|
[data] | boolean | 是否更新成功 |
# 返回示例
{
"ret": 0,
"errCode": 0,
"errcode": 0,
"msg": "success",
"data": true
}
1
2
3
4
5
6
7
2
3
4
5
6
7
← 创建展品合集 批量为展品合集添加单品 →