accountVerify
Tips
- All requests are
Postrequests, and the data format isjson
Request URL
/v1/paypro/accountVerify
Request Method
- Post
Header
| Name | Required | Type | Desc |
|---|---|---|---|
| merchantNo | Y | string | - |
Request Body Parameters
| Name | Required | Type | Desc |
|---|---|---|---|
| sign | yes | string | encrypt |
| timestamp | yes | string | Timestamp |
| bankAccountNo | yes | string | Bank Account Number |
| bankCode | yes | string | Bank code (see Appendix for details) |
Request Example
{
"sign": "363b4674a1c1772e8a50295dc19d6727",
"timestamp": "1732988442913",
"bankAccountNo": "5464438554636",
"bankCode": "0002"
}
Successful Response Example
| Parameter name | Required | Type | Description |
|---|---|---|---|
| msg | yes | string | Request result |
| code | yes | string | Request response code๏ผReturning 0000 indicates successful card verification only; all other responses indicate verification failure.๏ผ |
| timestamp | yes | string | Timestamp๏ผ1715941383720๏ผ |
| success | yes | string | Results |
| data | yes | Object | Return object |
| data.bankAccountNo | yes | string | Bank Account Number |
| data.bankAccountName | yes | string | Bank Account Name |
{
"msg": "success",
"code": "0000",
"timestamp": 1728609277476,
"success": true,
"data": {
"bankAccountNo": "31111111",
"bankAccountName": "Sdr NAVAF BAYU KURNIAWA",
}
}
