需要 write_products 权限点。
更多权限点使用信息,请参考:
POST https://{handle}.myshopline.com/admin/openapi/v20230901/products/custom_collections.json
handle :店铺的唯一标识符,值为店铺域名的前缀。例如,域名为 open001.myshopline.com 的店铺,其 handleopen001
创建手动分类
请求头
  • Content-Type required
    字段值固定为application/json; charset=utf-8
  • Authorization string required
    资源的访问令牌。请参考 应用授权 获取访问令牌,然后将获取到的访问令牌以 Bearer 格式传入
    Example:
    Bearer eyJhbGciOiJIUzUxMiJ9.eyJhcHBLZXkiOiJmMjM3OWQyMTYyOGMzM2QxMWRiMWZkYjY5N2EzZjdjMjZlNGMwYTA5Iiwic2VsbGVySWQiOiIyMDAwMjM0ODgwIiwic3RvcmVJZCI6IjE2NzIzNjk3Mjk2MDYiLCJ2ZXJzaW9uIjoiVjIiLCJkb21haW4iOiJodHRwczovL3NsLW9wZW4tc2cubXlzaG9wbGluZS5jb20iLCJ0aW1lc3RhbXAiOjE2NzUzMTk0OTI0MzksImlzcyI6Inlzb3VsIiwiZXhwIjoxNzY5OTI3NDkyfQ.UwQzomM2veGCUaOZ0paUxq5dpc7DXuhHYFvsQ_uIAKduzWcb_j2E4q_36El83sp145D4cKbpcE5KCeeIz-JNQw
请求体
  • custom_collectionobject required
    分类信息
  • bannerobject
    分类banner图
  • alt string
    图片alt
    Example: This is a image alt
  • src string
    图片src
    Example: https://img.myshopline.com/image/official/e46e6189dd5641a3b179444cacdcdd2a.png
  • body_html string
    分类描述
    Example: This is a description
  • collectsobject[]
    商品ID列表
  • product_id string
    商品ID
    Example: 16057850264845250791280282
  • handle string
    分类Handle
    Example: collection-handle
  • imageobject
    分类的图片
  • alt string
    图片alt
    Example: This is a image alt
  • src string
    图片src
    Example: https://img.myshopline.com/image/official/e46e6189dd5641a3b179444cacdcdd2a.png
  • published_scope string
    设置发布范围,值为「web」时表示在线商店
    Example: web
  • sort_order string
    排序方式,热销:best-selling,产品名称从A-Z:alpha-asc,产品名称从Z- A:alpha-desc,更新时间新→旧:updated-desc,更新时间旧→新:updated-asc,自定义:manual
    Example: updated-asc
  • title string required
    分类标题
    Example: This is a title
响应
更多状态码信息请参考 HTTP 状态码

响应头
  • traceId
    traceId
响应体
  • custom_collectionobject
    手动分类信息
  • bannerobject
    分类banner
  • alt string
    图片alt
    Example: This is a image alt
  • src string
    图片地址
    Example: https://img.myshopline.com/image/official/e46e6189dd5641a3b179444cacdcdd2a.png
  • body_html string
    分类描述
    Example: This is a description
  • created_at string
    创建时间
    Example: 2021-09-03T14:11:54+00:00
  • handle string
    分类handle
    Example: collection-handle
  • id string
    分类id
    Example: 12257170618007271602093384
  • imageobject
    分类图片
  • alt string
    图片alt
    Example: This is a image alt
  • src string
    图片地址
    Example: https://img.myshopline.com/image/official/e46e6189dd5641a3b179444cacdcdd2a.png
  • published_at string
    发布到在线商店的时间
    Example: 2021-09-03T14:11:54+00:00
  • published_scope string
    发布范围,值为「web」时表示在线商店
    Example: web
  • sort_order string
    排序方式
    Example: updated-asc
  • template_path string
    主题模板
    Example: templates/sortation/detail.json
  • title string
    分类标题
    Example: This is a title
  • updated_at string
    更新时间
    Example: 2021-09-03T14:11:54+00:00
API Explorer
https://openapiceshidianpu.myshopline.com/admin/openapi/v20230901

ParamOptions

— header required

Body

required
{
  "custom_collection": {
    "banner": {
      "alt": "This is a image alt",
      "src": "https://img.myshopline.com/image/official/e46e6189dd5641a3b179444cacdcdd2a.png"
    },
    "body_html": "This is a description",
    "collects": [
      {
        "product_id": "16057850264845250791280282"
      }
    ],
    "handle": "collection-handle",
    "image": {
      "alt": "This is a image alt",
      "src": "https://img.myshopline.com/image/official/e46e6189dd5641a3b179444cacdcdd2a.png"
    },
    "published_scope": "web",
    "sort_order": "updated-asc",
    "title": "This is a title"
  }
}

Language

curl --request POST \
--url https://openapiceshidianpu.myshopline.com/admin/openapi/v20230901/products/custom_collections.json \
--header 'Authorization: Bearer eyJhbGciOiJIUzUxMiJ9.eyJhcHBLZXkiOiJmMjM3OWQyMTYyOGMzM2QxMWRiMWZkYjY5N2EzZjdjMjZlNGMwYTA5Iiwic2VsbGVySWQiOiIyMDAwMjM0ODgwIiwic3RvcmVJZCI6IjE2NzIzNjk3Mjk2MDYiLCJ2ZXJzaW9uIjoiVjIiLCJkb21haW4iOiJodHRwczovL3NsLW9wZW4tc2cubXlzaG9wbGluZS5jb20iLCJ0aW1lc3RhbXAiOjE2NzUzMTk0OTI0MzksImlzcyI6Inlzb3VsIiwiZXhwIjoxNzY5OTI3NDkyfQ.UwQzomM2veGCUaOZ0paUxq5dpc7DXuhHYFvsQ_uIAKduzWcb_j2E4q_36El83sp145D4cKbpcE5KCeeIz-JNQw' \
--header 'Content-Type: application/json; charset=utf-8' \
--header 'accept: application/json'
Examples
创建
Request
{
"custom_collection": {
"banner": {
"alt": "This is a image alt",
"src": "https://img.myshopline.com/image/official/e46e6189dd5641a3b179444cacdcdd2a.png"
},
"body_html": "This is a description",
"collects": [
{
"product_id": "16060878916899800731963144"
}
],
"handle": "third",
"image": {
"alt": "This is a image alt",
"src": "https://img.myshopline.com/image/official/e46e6189dd5641a3b179444cacdcdd2a.png"
},
"published_scope": "web",
"sort_order": "updated-asc",
"title": "Third Custom Collection"
}
}
Response
{
"custom_collection": {
"banner": {
"alt": "This is a image alt",
"src": "https://img.myshopline.com/image/official/e46e6189dd5641a3b179444cacdcdd2a.png?type=banner"
},
"body_html": "This is a description",
"created_at": "2023-08-29T16:04:29+08:00",
"handle": "third",
"id": "12260895952237462871473144",
"image": {
"alt": "This is a image alt",
"src": "https://img.myshopline.com/image/official/e46e6189dd5641a3b179444cacdcdd2a.png?type=cover"
},
"published_at": "2023-08-29T16:04:29+08:00",
"published_scope": "web",
"sort_order": "updated-asc",
"title": "Third Custom Collection",
"updated_at": "2023-08-29T16:04:29+08:00"
}
}
这篇文章对你有帮助吗?

Error loading component.

Error loading component.