GET v1/utilityClass/verifyBankAccount?accountNo={accountNo}&bankCode={bankCode}
Request Information
URI Parameters
Name | Description | Type | Additional information |
---|---|---|---|
accountNo | string |
Required |
|
bankCode | string |
Required |
Body Parameters
None.
Response Information
Resource Description
bankVerificationResultName | Description | Type | Additional information |
---|---|---|---|
status | boolean |
None. |
|
message | string |
None. |
|
data | Data |
None. |
Response Formats
application/json, text/json
Sample:
{ "status": true, "message": "sample string 2", "data": { "account_number": "sample string 1", "account_name": "sample string 2" } }
application/xml, text/xml
Sample:
<paystackPaymentService.bankVerificationResult xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/unifiedApp.DTO"> <data> <account_name>sample string 2</account_name> <account_number>sample string 1</account_number> </data> <message>sample string 2</message> <status>true</status> </paystackPaymentService.bankVerificationResult>
text/html
Sample:
{"status":true,"message":"sample string 2","data":{"account_number":"sample string 1","account_name":"sample string 2"}}