QueryOpenAccount
Parameter description
Request
name | type | required | desc | example |
---|---|---|---|---|
param | object | YES | param | |
─epayAccount | string | YES | Merchant EPAY account | test2020@epay.com |
─idNumber | string | YES | ID number | 152793399204000000 |
─accountNo | string | YES | Bank card number | 6444030324023000000 |
─version | string | YES | Version number | V2.0.0 |
sign | string | NO | Signature |
Response
name | type | required | desc | example |
---|---|---|---|---|
sign | string | NO | Signature | |
epayAccount | string | NO | Merchant EPAY account | test2020@epay.com |
version | string | NO | Version number | V2.0.0 |
code | integer | NO | Response code 1: Success | 1 |
message | string | NO | Message info | success |
data | object | NO | Data (if no account is opened, the field is empty) | |
─phone | string | YES | Bank card binding mobile phone number | 13942000000 |
─address | string | YES | address | No. xx, Building X, xx Garden, No. 16, xx Fifth Road, xx District, xx City, xx Province |
─bankName | string | YES | Bank name | Industrial and Commercial Bank of China |
─custName | string | YES | Name | Hao xx |
─idNumber | string | YES | ID number | 420102199305000000 |
─accountNo | string | YES | Bank card number | 6222021380819000000 |
─issueDate | string | YES | ID card issuance date | 20160326 |
─expireDate | string | YES | ID card expiration date | 20260326 |
─licIssuAutho | string | YES | Issuing authority | Xx District Public Security Bureau Branch |
Parameter example
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": "139420000000",
"address": "No. xx, Building X, xx Garden, No. 16, xx Fifth Road, xx District, xx City, xx Province",
"bankName": "Industrial and Commercial Bank of China",
"custName": "Hao xx",
"idNumber": "420102199305000000",
"accountNo": "6222021380819000000",
"issueDate": "20160326",
"expireDate": "20260326",
"licIssuAutho": "Xx District Public Security Bureau Branch"
}
}