# 获取主体的设备列表

# 接口说明

# 注意事项

# 接口地址

https://open.wecard.qq.com/cgi-bin/pay/provider/device-list

# 请求方法

GET

# 请求参数

参数 是否必填 类型 实例 说明
page Integer 页码
page_size Integer 每页数据条目;默认100,最大不能超过100

# 响应说明

{
  "code": 0,
  "data": {
    "has_more": 0,
    "list": [
      {
        "device_id": "WXOCOM1xxxxxa",
        "merchant_address": "深圳",
        "merchant_name": "测试商户a"
      },
      {
        "device_id": "WXOCOM1xxxxxb",
        "merchant_address": "深圳",
        "merchant_name": "测试商户b"
      }
    ]
  },
  "message": "ok"
}
参数名 类型 必填 描述
code int 业务状态 0 为成功 其他为失败
message string 业务提示
data has_more int 是否有更多 1:是 0:否
list device_id string 设备编号
merchant_address string 商户地址;设备绑定商户且商户设置了地址才有值
merchant_name string 商户名称;设备绑定商户才有值