# Get Weixin Store list of partner accounts
Through this interface Weixin Mini Program you can get a list of cooperative accounts Weixin Store
# Dxplaination of Interface Call Request
http请求方式:POST
https://api.weixin.qq.com/channels/ec/cooperation/shop/list?access_token=ACCESS_TOKEN
# Example of request parameters
{
}
# Examples of back-up
{
"shop_list": [
{
"appid": "wx***************0",
"nickname": "测试店",
"status": 1,
"bind_time": 1728979333943,
"unbind_time": 0,
"cancel_time": 0
}
],
"errcode": 0,
"errmsg": "ok"
}
# Dxplaination of request parameters
# Dxplaination of callback parameters
参数 | type | Introductions |
---|---|---|
errcode | string | Error code |
errmsg | string | Error message |
shop_list | object | List of shops |
appid | string | Shop AppID |
nickname | string | Store Name |
status | number | Binding Status 1- Binding 2- Unbinding 3- Rejected Binding 4- Invited 5- Binding Overtime 6- Binding Failed 7- Store Canceled Binding |
bind_time | number | Binding time, millisecond time stamp |
unbind_time | number | Unbinding time, millisecond timestamp |
cancel_time | number | Cancellation time, millisecond time stamp |