文档中心 > Lazada Open Platform

获取可升级 Global Plus 商品列表

更新时间:2024/04/17 访问次数:245

API:/product/global/semi/avaible/get


每次升级成功后,商品状态会准实时同步更新到列表,也就是重新再拉是拉不到升级成功的品。(这里会影响到传输的页数)

请求参数

参数

类型

描述

type

String

商品发布类型,global/single分别对应使用gsp或asc发布的商品;选择global商品忽略下面country参数

country

String

查询的国家,MY/SG/PH/VN/TH

pageNo

Integer

页数, 首页传1

pageSize

Integer

每页数目,type=global:pageSize传参最大为100
type=single:pageSize传参最大为20

currentIndex

Long

每次请求返回的currentIndex, 首次传0

响应参数

{
  "code": "0",
  "data": {
    "total_products": 120,
    "current_page":1,
    "page_size": 10,
    "current_index":0,
    "type": "global",
    "products": [
      {
        "global_item_id": "180226526", //查询asc时此字段为空
        "item_id": 13243454, //查询global时此字段为空
        "skus": [
          {
            "item_id": 13243454, //查询global时此字段为空
            "sku_id": 314525867, //查询global时此字段为空
            "seller_sku": "ctf-a",
            "package_width": "10.00",
            "package_height": "4.00",
            "package_length": "10.00",
            "package_weight": "0.04",
            "country_info": [
              {
                "market": "LAZADA_MY",
                "quantity": 10, // global场景quantity字段都为null 
                "special_price": "9", //零售价
                "price": "32", //原价 划线价
                "currency":"MYD",
                "item_id":123456, //查询global时,对应国家的itemId
                "sku_id":123456879//查询global时,对应国家的skuId
              },
              {
                "market": "LAZADA_VN",
                "quantity": 5, // global场景quantity字段都为null 
                "special_price": "3800", //零售价
                "price": "7500", //原价 划线价
                "currency":"VND",
                "item_id":123456,//查询global时,对应国家的itemId
                "sku_id":123456879//查询global时,对应国家的skuId
              },
              { // 2024-03-13开始不再返回这个信息
                "market": "GLOBAL_CB",
                "quantity": null, // global场景quantity字段都为null 
                "special_price": "5", //零售价
                "price": "8", //原价 划线价
                "currency":"CNY"
              }
            ]
          }
        ]
      }
    ]
  },
  "request_id": "0ba2887315178178017221014"
}

FAQ

关于此文档暂时还没有FAQ
返回
顶部