# 获取合作店铺商品

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

# 接口调用请求说明

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

# 请求参数示例

{
    "shop_appid": "wx2b255582a7b4bfd0",
    "product_id": 10000157022254
}

# 请求参数说明

参数 类型 是否必填 说明
shop_appid string 店铺appid
product_id number 商品id

# 回包示例

{
    "product": {
        "product_id": 10000157022254,
        "title": "测试商品",
        "img_urls": [
            "IMG_URL0",
            "IMG_URL1"
        ],
        "min_price": 2800
    },
    "errcode": 0,
    "errmsg": "ok"
}

# 回包参数说明

参数 类型 说明
product object 商品
product_id number 商品id
title string 标题
img_urls string 图片
min_price number 最低价