# 查询支行列表

# 接口调用请求说明

http请求方式:POST
https://api.weixin.qq.com/shop/funds/getsubbranch?access_token=xxxxxxxxx

# 请求参数示例

{
  "bank_code": "1000009501",
  "city_code": "571",
  "offset": 0,
  "limit": 1
}

# 回包示例

{
  "account_bank": "其他银行",
  "account_bank_code": 1099,
  "bank_alias": "浙江网商银行",
  "bank_alias_code": "1000009501",
  "count": 1,
  "data": [
    {
      "branch_id": "323331000001",
      "branch_name": "浙江网商银行股份有限公司"
    }
  ],
  "total_count": 1
}

# 请求参数说明

参数 类型 是否必填 说明
bank_code string 银行编码,通过查询银行信息或者搜索银行信息获取
city_code string 城市编号,通过查询城市列表获取
offset number 偏移量
limit number 限制个数

# 回包参数说明

参数 类型 说明
errcode number 错误码
errmsg string 错误信息
total_count number 总数
count number 当前分页数量
account_bank string 银行名称
account_bank_code string 银行编码
bank_alias string 银行别名
bank_alias_code string 银行别名编码
data[].branch_id number 支行联号
data[].branch_name string 银行全称(含支行)

# 错误码

错误码 错误信息
公共错误码 点击查看
9710001 暂无数据