# Get a list of already bound shareholders
# Dxplaination of Interface Call Request
http请求方式:POST
https://api.weixin.qq.com/shop/sharer/get_sharer_list?access_token=xxxxxxxxx
# Request parameters
{
"page": 1,
"page_size": 10
}
# Examples of back-up
{
"errcode":0,
"errmsg":"ok",
"sharers":[
{
"openid":"OPENID",
"invited_time":"1624082055",
"bind_time":"1624082155",
"nickname": "NICKNAME"
}
],
"total_num":20
}
# Dxplaination of request parameters
参数 | type | Is it compulsory? | Introductions |
---|---|---|---|
page | number | yes | What Page (Minimum Fill 1) |
page_size | number | yes | Number of pages per page (no more than 100) |
# Dxplaination of callback parameters
参数 | type | Introductions |
---|---|---|
errcode | string | Error code |
errmsg | string | Error message |
sharers[].openid | string | Sharer openid |
sharers[].invited_time | number | Moderator invitation time |
sharers[].bind_time | number | Shareholder binding time |
sharers[].nickname | string | Shareer's nickname |
total_num | number | Total number of associated shareholders |