# Query a list of cities
# Dxplaination of Interface Call Request
http请求方式:POST
https://api.weixin.qq.com/shop/funds/getcity?access_token=xxxxxxxxx
# Example of request parameters
{
"province_code": 1,
}
# Examples of back-up
{
"data": [
{
"bank_address_code": "110000",
"city_code": 10,
"city_name": "北京市"
}
],
"total_count": 1
}
# Dxplaination of request parameters
parameter | type | Is it compulsory? | Introductions |
---|---|---|---|
province_code | number | yes | Province codes |
# Dxplaination of callback parameters
parameter | type | Introductions |
---|---|---|
errcode | number | Error code |
errmsg | string | Error message |
data | ObjectCityInfo list | List of bank information |
total_count | number | total |
# CityInfo
parameter | type | Introductions |
---|---|---|
city_name | string | City Name |
city_code | number | City number (get branch parameters) |
bank_address_code | string | Account Banking Province and City Code |
# Return code
Return code | Error Type |
---|---|
-1 | System exceptions |
9710001 | No data yet |