查询银行账户
参数说明
Request
name | type | required | desc | example |
---|---|---|---|---|
param | object | YES | param | |
─epayAccount | string | YES | epay账号 | test2020@epay.com |
─idNumber | string | YES | 身份证号 | 152793399204230410 |
─accountNo | string | YES | 银行卡号 | 6444030324023402132 |
─version | string | YES | 版本号 | V2.0.0 |
sign | string | NO | 签名 |
Response
name | type | required | desc | example |
---|---|---|---|---|
sign | string | NO | 签名 | |
epayAccount | string | NO | epay账号 | test2020@epay.com |
version | string | NO | 版本号 | V2.0.0 |
code | integer | NO | 状态码 1: Success | 1 |
message | string | NO | 错误提示 | success |
data | object | NO | Data (如果绑定银行卡失败,该字段为空) | |
─phone | string | YES | 银行预留手机号码 | 13942056094 |
─address | string | YES | 地址 | 湖北省武汉市江岸区后湖五路16号大朗花园A栋226号 |
─bankName | string | YES | 银行名称 | 中国工商银行 |
─custName | string | YES | 姓名 | 昊份华 |
─idNumber | string | YES | 身份证号码 | 420102199305156119 |
─accountNo | string | YES | 银行卡号 | 6222021380819804762 |
─issueDate | string | YES | 身份证签发日期 | 20160326 |
─expireDate | string | YES | 身份证有效期 | 20260326 |
─licIssuAutho | string | YES | 签发机关 | 江岸区公安局分局 |
参数示例
curl --location --request POST 'http://29597375fx.epaydev.xyz/capi/openapi/payoutApi/queryOpenAccount' \
--header 'Content-Type: application/json' \
--data-raw '{
"param": {
"epayAccount": "test2020@epay.com",
"accountNo": "6444030324023402132",
"idNumber": "152793399204230410",
"version": "V2.0.0"
},
"sign": "{{sign}}"
}'
RequestExample
curl --location --request POST 'http://29597375fx.epaydev.xyz/capi/openapi/payoutApi/queryOpenAccount' \
--header 'Content-Type: application/json' \
--data-raw '{
"param": {
"epayAccount": "test2020@epay.com",
"accountNo": "6444030324023402132",
"idNumber": "152793399204230410",
"version": "V2.0.0"
},
"sign": "{{sign}}"
}'
ResponseExample
{
"sign": "",
"epayAccount": "test2020@epay.com",
"version": "V2.0.0",
"code": 1,
"message": "success",
"data": {
"phone": "13942056094",
"address": "湖北省武汉市江岸区后湖五路16号大朗花园A栋226号",
"bankName": "中国工商银行",
"custName": "昊份华",
"idNumber": "420102199305156119",
"accountNo": "6222021380819804762",
"issueDate": "20160326",
"expireDate": "20260326",
"licIssuAutho": "江岸区公安局分局"
}
}