Resolve Bank Account
GET /wallets/banks/resolve-bank-account/{account_number}/{bank_code}
Use the GET /wallets/banks/resolve-bank-account/{account_number}/{bank_code}
endpoint to resolve a user's bank account on Paystack by verifying the provided account number and bank code.
Parameters
Name
Type
Location
Description
account_number
String
Path
The bank account number to resolve. (Required)
bank_code
String
Path
The code of the bank associated with the account. (Required)
Responses
Success Response
Code
Description
200
The bank account was successfully resolved on Paystack.
Example Response
{
"status": "success",
"data": {
"account_number": "1234567890",
"account_name": "John Doe",
"bank_code": "123",
"bank_name": "Example Bank"
}
}
Last updated