查询支持个人业务的银行列表
通过本接口可以查询支持个人业务的银行列表
请求参数 | 类型 | 描述 |
---|---|---|
query | object | 声明请求的查询参数 |
offset | integer | 本次查询偏移量 |
limit | integer | 本次请求最大查询条数 |
php
$instance->v3->capital->capitallhh->banks->personalBanking->getAsync([
'query' => [
'offset' => 0,
'limit' => 200,
],
])
->then(static function(\Psr\Http\Message\ResponseInterface $response) {
print_r(json_decode((string) $response->getBody(), true));
})
->wait();
php
$instance->chain('v3/capital/capitallhh/banks/personal-banking')->getAsync([
'query' => [
'offset' => 0,
'limit' => 200,
],
])
->then(static function(\Psr\Http\Message\ResponseInterface $response) {
print_r(json_decode((string) $response->getBody(), true));
})
->wait();
php
$instance['v3/capital/capitallhh/banks/personal-banking']->getAsync([
'query' => [
'offset' => 0,
'limit' => 200,
],
])
->then(static function(\Psr\Http\Message\ResponseInterface $response) {
print_r(json_decode((string) $response->getBody(), true));
})
->wait();
php
$response = $instance->v3->capital->capitallhh->banks->personalBanking->get([
'query' => [
'offset' => 0,
'limit' => 200,
],
]);
print_r(json_decode((string) $response->getBody(), true));
php
$response = $instance->chain('v3/capital/capitallhh/banks/personal-banking')->get([
'query' => [
'offset' => 0,
'limit' => 200,
],
]);
print_r(json_decode((string) $response->getBody(), true));
php
$response = $instance['v3/capital/capitallhh/banks/personal-banking']->get([
'query' => [
'offset' => 0,
'limit' => 200,
],
]);
print_r(json_decode((string) $response->getBody(), true));
返回字典 | 类型 | 描述 |
---|---|---|
total_count | integer | 查询数据总条数 |
count | integer | 本次查询数据条数 |
data | object[] | 银行列表 |
bank_alias | string | 银行别名 |
bank_alias_code | string | 银行别名编码 |
account_bank | string | 开户银行 |
account_bank_code | integer | 开户银行编码 |
need_bank_branch | boolean | 是否需要填写支行 |
offset | integer | 本次查询偏移量 |
links | object | 分页链接 |
next | string | 下一页链接 |
prev | string | 上一页链接 |
self | string | 当前链接 |
参阅 官方文档