# Get the shareholder's total shipment data
# Dxplaination of Interface Call Request
http请求方式:POST
https://api.weixin.qq.com/shop/sharer/get_sharer_data_summary?access_token=xxxxxxxxx
# Request parameters
{
"openid": "xxxxx"
}
# Examples of back-up
{
"errcode":0,
"errmsg":"ok",
"gmv" : 12345,
"order_cnt" : 9,
"user_cnt" : 7
}
# Dxplaination of request parameters
参数 | type | Is it compulsory? | Introductions |
---|---|---|---|
openid | string | yes | Sharer openid |
# Dxplaination of callback parameters
参数 | type | Introductions |
---|---|---|
errcode | string | Error code |
errmsg | string | Error message |
gmv | number | Shareholder effective shipments (in units) |
order_cnt | number | Number of orders |
user_cnt | number | Number of users placing orders |