开放Api-商品专辑collection-更新
Api描述:商家端,更新产品专辑collection
URL: /manager/api/apps/openapi/product-collection/update
格式:json
方式:post
数据请求部分
1.Request Header 参数:
参数名称 | 是否必须 | 类型 | 描述 |
---|---|---|---|
open-access-token | 必须 | String | 在开放api插件中,创建权限后即可获取该token |
2.Request JSON Data(Body):
参数名称 | 是否必须 | 类型 | 描述 |
---|---|---|---|
id | 必须 | int | 产品id |
title | 必须 | string | 专辑title |
body_html | 选填 | string | 专辑描述 |
meta_title | 选填 | string | 【seo标题】 meta title,【非独立编辑】模式下,从title取值即可 |
meta_keywords | 选填 | string | 【seo关键字】 meta keywords |
meta_description | 选填 | string | 【seo描述】 meta description,【非独立编辑】模式下,从 body_html 取值即可 |
image | 选填 | string | 专辑图片url 路径 |
handle | 选填 | string | 专辑url handle ,如果handle在数据库中已经存在,则会在后面加上几个随机的数字 |
注意,对于图片,请先使用 开放Api-上传图片 同步图片
post示例数据:(例子)
{
"id": 49,
"meta_title": "my collection title",
"meta_keywords": "collection keywords",
"meta_description": "my collection title body html",
"handle": "my-collection-title",
"body_html": "<p>my collection title body html</p>",
"title": "my collection title",
"image": "/diy/15/image/2023/02/08/adc3bd7de0159266c0ac3229012940c0.png"
}
数据返回部分
1.Response JSON Data(Body):
格式:json
参数名称 | 是否必须 | 类型 | 描述 |
---|---|---|---|
code | 必须 | Number | 200 代表成功 |
message | 必须 | String | 执行结果的文字描述信息 |
data | 必须 | Array | api获取的数据保存到data中 |
Response JSON Data(示例数据):
{
"code": 200,
"data": {
"id": 49,
"shop_id": 15,
"type": 1,
"handle": "my-collection-title-j36cin",
"title": "my collection title 666",
"body_html": "<p>my collection title body html</p>",
"meta_is_edit": 1,
"meta_title": "my collection title",
"meta_keywords": "collection keywords",
"meta_description": "my collection title body html",
"image": "/diy/15/image/2023/02/08/adc3bd7de0159266c0ac3229012940c0.png",
"sort_order": 0,
"automated_rules": null,
"created_at": "2023-02-08 13:52:43",
"updated_at": "2023-02-08 14:02:10",
"translate_type": 3,
"remote_id": ""
},
"message": "success"
}