开放Api-博客专辑-更新
Api描述:商家端,更新博客专辑collection
URL: /manager/api/apps/openapi/blog-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, |
meta_keywords | 选填 | string | 【seo关键字】 meta keywords |
meta_description | 选填 | string | 【seo描述】 meta description |
handle | 选填 | string | 专辑url handle ,如果为空,则使用title生成 |
注意,对于图片,请先使用 开放Api-上传图片 同步图片
post示例数据:(例子)
{
"id":20,
"meta_title": "111122222",
"meta_keywords": "",
"meta_description": "222222",
"handle": "1111",
"body_html": "<p>222222</p>",
"title": "1111"
}
数据返回部分
1.Response JSON Data(Body):
格式:json
参数名称 | 是否必须 | 类型 | 描述 |
---|---|---|---|
code | 必须 | Number | 200 代表成功 |
message | 必须 | String | 执行结果的文字描述信息 |
data | 必须 | Array | api获取的数据保存到data中 |
Response JSON Data(示例数据):
{
"code": 200,
"data": {
"id": 20,
"shop_id": 15,
"handle": "1111-wlci6h",
"title": "1111",
"body_html": "<p>222222</p>",
"meta_title": "111122222",
"meta_is_edit": 1,
"translate_type": 3,
"meta_keywords": "",
"meta_description": "222222",
"updated_at": "2023-02-08 17:23:33",
"created_at": "2023-02-08 17:20:20",
"remote_id": ""
},
"message": "success"
}