# 获取合作商品列表

# 接口说明

可通过该接口获取商品列表

# 接口调用请求说明

POST https://api.weixin.qq.com/channels/ec/league/headsupplier/item/list/get?access_token=ACCESS_TOKEN

# 请求参数说明

参数 类型 是否必填 描述
appid string 团长商品 所属小店appid
page_size number 单页商品数(不超过30)
next_key string 由上次请求返回,顺序翻页时需要传入, 会从上次返回的结果往后翻一页

# 请求参数示例

{
    "page_size": 2
}

# 返回参数说明

参数 类型 描述
errcode number 错误码
errmsg string 错误信息
list[].product_id string(uint64) 商品id
list[].appid string(uint64) 所属小店appid
next_key string 本次翻页的上下文,用于顺序翻页请求
has_more bool 是否还有剩余商品

# 返回参数示例

{
    "errcode": 0,
    "errmsg": "ok",
    "list": [
        {
            "appid": "test",
            "product_id": "12345"
        },
        {
            "appid": "test",
            "product_id": "123456"
        }
    ],
    "has_more": true
}

# 错误码

错误码 错误描述
公共错误码 -
10024000 参数错误
10024003 不合法的appid