# shopping-guide.getGuideBuyerRelationList

本接口应在服务器端调用,详细说明参见服务端API

获取顾问的客户列表

# 请求地址

POST https://api.weixin.qq.com/cgi-bin/guide/getguidebuyerrelationlist?access_token=ACCESS_TOKEN

# 请求参数

属性 类型 默认值 必填 说明
access_token string 接口调用凭证
guide_account string 顾问微信号(guide_account和guide_openid二选一)
guide_openid string 顾问openid或者unionid(guide_account和guide_openid二选一)
page number 分页页数,从0开始
num number 每页数量

# 返回值

# Object

属性 类型 说明
total_num number 顾问总数量
list Array.<Object> 账号列表
errcode number 错误码
errmsg number 错误信息

list 的结构

属性 类型 说明
openid string 客户openid
create_time number 绑定时间戳
buyer_nickname string 客户昵称

errcode 的合法值

说明 最低版本
0 成功
-1 系统失败

# 请求数据示例

{
  "guide_account": "wx_account",
  "page": 0,
  "num": 10
}

# 返回数据示例

{
       "total_num": 1,
       "list": [
           {
               "openid": "xxxxxxx",
               "buyer_nickname": "xxxxxxx",
               "create_time": 11223344
           }
       ],
   "errcode": 0,
   "errmsg": "ok"
   }