Skip to main content

Verify bank account

Verify the bank account used for merchant transfers.

Request#

POST

/gateway/bankAccountVerify

Parameter#

application/json

FieldTypeDescription
merchantCodestring [5..50] charactersUnique merchant code
bankCodestringbank short name
accountNumberstringbank card number of user.
signstring <=512 charactersEncrypted parameters.

Request Example#

{
"merchantCode": "S2020198627344",
"bankCode": "014",
"accountNumber": "1208930430392",
"sign": "MIGfMA0GCSqGSI...w1ypbiy7VhIoFJbgSYSSHdC"
}

Response#

Success#

200 application/json

FieldTypeDescription
platRespCodestringresult code: "SUCCESS" "FAIL" "UNKNOWN" "NOTEXIST" "ERROR"
platRespMessagestringdescription of resp code
accountNumberstringbank card number of user.
accountNamestringfull name of the bank card owner
platSignstringEncrypted response data

Response Example#

{
"platRespCode": "SUCCESS",
"platRespMessage": "success",
"accountNumber": "1208930430392",
"accountName": "SOME ONE FULL NAME",
"platSign": "MIGfMA0GCSqGSI...w1ypbiy7VhIoFJbgSYSSHdC"
}