# shopping-guide.getGuideBuyerRelationByBuyer

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

查询客户所属顾问

# 请求地址

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

# 请求参数

属性 类型 默认值 必填 说明
access_token string 接口调用凭证
openid string 客户openid

# 返回值

# Object

属性 类型 说明
openid string 客户openid
guide_account string 如果绑定顾问的时候,是用guide_accout参数绑定,拉取时才有这个数据
guide_openid string 如果绑定顾问的时候,是用guide_openid参数绑定,拉取时才有这个数据
buyer_nickname string 客户昵称
create_time number 绑定时间戳
errcode number 错误码
errmsg string 错误信息

errcode 的合法值

说明 最低版本
0 成功
-1 系统失败
40003 无效的openid
9300806 客户和顾问不存在绑定关系

# 请求数据示例

{
  "openid": "xxxxxxx"
}

# 返回数据示例

{
  "openid": "xxxxx",
  "guide_account": "xxxxx",
  "guide_openid": "xxxxx",
  "buyer_nickname": "张三",
  "create_time": 11223344,
  "errcode": 0,
  "errmsg": "ok"
}