# 查询用户绑定列表

调试工具

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

# 接口说明

# 接口英文名

weDataQueryBindList

# 功能描述

查询用户绑定列表

# 调用方式

# HTTPS 调用


POST https://api.weixin.qq.com/wedata/wedata_query_bind_list?access_token=ACCESS_TOKEN 

# 第三方调用

  • 调用方式以及出入参和HTTPS相同,仅是调用的token不同

  • 该接口所属的权限集id为:18

  • 服务商获得其中之一权限集授权后,可通过使用authorizer_access_token代商家进行调用

# 请求参数

属性 类型 必填 说明
access_token string 接口调用凭证,该参数为 URL 参数,非 Body 参数。使用authorizer_access_token

# 返回参数

属性 类型说明
errcode number 错误码
errmsg string 错误信息
info array<object> 用户绑定信息
属性 类型 说明
uid string 用户在服务商系统的唯一标识,可以是手机号、邮箱、员工ID 等等。
create_time number 创建时间(uinx时间戳,单位为秒)
update_time number 更新时间(uinx时间戳,单位为秒)
nickname string 用户微信昵称
head_url string 用户微信头像url
is_bind number uid是否绑定了微信号
perm array<object> 用户权限集
属性 类型 说明
perm_id string 权限集id
name string 权限集名称
desc string 权限集描述

# 调用示例

示例说明: HPPTS请求示例

# 请求数据示例


POST https://api.weixin.qq.com/wedata/wedata_query_bind_list?access_token=ACCESS_TOKEN 

# 返回数据示例


{
     "errcode": 0,
     "errmsg": "OK",
     "info": [
          {
               "uid": "test",
               "create_time": 1663728070,
               "update_time": 1663728119,
               "nickname": "xxx",
               "head_url": "http://wx.qlogo.cn/mmhead/xxxxxxxxxxxxxxxxxxxxxxx",
               "is_bind": 1,
               "perm": [
                    {
                         "perm_id": "10001",
                         "name": "全站只读权限",
                         "desc": "具备所有模块的“查看”权限。但没有“创建”、“编辑”、“下载”、“删除”的权限"
                    }
               ]
          },
          {
               "uid": "example",
               "create_time": 1663664719,
               "update_time": 1663664941,
               "is_bind": 0
          }
     ]
} 

# 错误码

错误码 错误码取值 解决方案
-1 system error 系统繁忙,此时请开发者稍候再试