# Search for a list of banks

# Dxplaination of Interface Call Request

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

# Example of request parameters

{
    "offset": 0,  
    "limit": 10,
    "key_words":"招商",
    "bank_type":0
}

# Examples of back-up

{
    "data": [
      {
        "account_bank": "招商银行",
        "bank_code": "1000009561",
        "bank_id": "1001",
        "bank_name": "招商银行",
        "bank_type": 1,
        "need_branch": false
      },
      {
        "account_bank": "其他银行",
        "bank_code": "1000009580",
        "bank_id": "1099",
        "bank_name": "招商永隆银行",
        "bank_type": 1,
        "need_branch": true
      }
    ]
}

# Dxplaination of request parameters

parameter type Is it compulsory? Introductions
offset number no The amount of variation
limit number no Data size per page
key_words string no Banking Keywords
bank_type number no Type of bank (1: private bank, 2: public bank; Public by default)

# Dxplaination of callback parameters

parameter type Introductions
errcode number Error code
errmsg string Error message
data[].account_bank string Open an account at a bank
data[].bank_code string Bank codes
data[].bank_id number Bank numbers
data[].bank_name string Name of bank (excluding branch)
data[].bank_type number Type of bank (i.e. public, private)
data[].need_branch string Do I need to fill in branch information?

# Return code

Return code Error Type
-1 System exceptions
9710001 No data yet