开放Api-商品专辑-详情
Api描述:获取产品详细信息
URL: /manager/api/apps/openapi/product-collection/info
格式:json
方式:get
数据请求部分
1.Request Header 参数:
参数名称 | 是否必须 | 类型 | 描述 |
---|---|---|---|
open-access-token | 必须 | String | 在开放api插件中,创建权限后即可获取该token |
2.Request JSON Data(Body):
参数名称 | 是否必须 | 类型 | 描述 |
---|---|---|---|
id | 必填 | String | 商品专辑-id |
譬如,url中加入参数:
?id=657
数据返回部分
1.Response JSON Data(Body):
格式:json
格式:json
参数名称 | 是否必须 | 类型 | 描述 |
---|---|---|---|
code | 必须 | Number | 200 代表成功 |
message | 必须 | String | 执行结果的文字描述信息 |
data | 必须 | Array | api获取的数据保存到data中 |
data > id | 必须 | int | shipping id |
data > handle | 必须 | string | 专辑url路径 |
data > title | 必须 | string | 专辑标题 |
data > body_html | 必须 | string | 专辑描述 |
data > meta_title | 必须 | string | seo meta title |
data > meta_keywords | 必须 | string | seo meta keywords |
data > meta_description | 必须 | string | seo meta description |
data > image | 必须 | string | 专辑图片 |
data > created_at | 必须 | string | 创建时间 |
data > updated_at | 必须 | string | 更新时间 |
Response JSON Data(示例数据):
{
"code": 200,
"data": {
"id": 47,
"handle": "rehair-comb",
"title": "ReHair Comb3",
"body_html": "<p>111111222323232311</p>",
"meta_is_edit": 1,
"meta_title": "ReHair Comb3",
"meta_keywords": "",
"meta_description": "111111222323232311",
"image": "",
"created_at": "2023-01-10 23:25:06",
"updated_at": "2023-01-30 10:49:21"
},
"message": "success"
}