# 获取合作店铺商品列表

通过此接口小程序可以获取合作账号微信小店商品列表

# 接口调用请求说明

http请求方式:POST
https://api.weixin.qq.com/channels/ec/cooperation/product/list?access_token=ACCESS_TOKEN

# 请求参数示例

{
    "shop_appid": "wx***************0",
    "page_size": 2
}

# 请求参数说明

参数 类型 是否必填 说明
shop_appid string 店铺appid
page_size number 每页大小
next_key string 用于翻页,回包里得到

# 回包示例

{
    "products": [
        {
            "product_id": 10000157022254
        },
        {
            "product_id": 10000157016507
        }
    ],
    "total_num": 124,
    "next_key": "EhgIi/2/voWjAhCjzK24BhjAhZCBgICAgAI=",
    "errcode": 0,
    "errmsg": "ok"
}

# 回包参数说明

参数 类型 说明
errcode string 错误码
errmsg string 错误信息
total_num number 总数
next_key string 用于翻页
products object 商品列表
products[].product_id number 商品id