# 获取合作账号微信小店列表

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

# 接口调用请求说明

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

# 请求参数示例

{
}

# 回包示例

{
    "shop_list": [
        {
            "appid": "wx***************0",
            "nickname": "测试店",
            "status": 1,
            "bind_time": 1728979333943,
            "unbind_time": 0,
            "cancel_time": 0
        }
    ],
    "errcode": 0,
    "errmsg": "ok"
}

# 请求参数说明

# 回包参数说明

参数 类型 说明
errcode string 错误码
errmsg string 错误信息
shop_list object 店铺列表
appid string 店铺appid
nickname string 店铺名称
status number 绑定状态 1-已绑定 2-解绑 3-拒绝绑定 4-已邀请 5-绑定超时 6-绑定失败 7-店铺取消绑定
bind_time number 绑定时间,毫秒时间戳
unbind_time number 解绑时间,毫秒时间戳
cancel_time number 取消时间,毫秒时间戳