Resolve bank code
This endpoint retrieves all available recipient banks with their respective bank codes.
It returns the following parameters
- Bank name
- Bank code
- bank cbn code
Process Flow
- Make a GET call to Bank Codes.
- View the response as shown below on this page.
Sample Request
curl https://api-gateway.interswitchng.com/generic-wallet/api/v1/admin/account/banks \
-H "Authorization: Bearer <token>" \
-H "Content-Type: application/json" 
-X GET
Sample Response
{
  "statusCode": "200",
  "responseCode": "00",
  "responseMessage": "Successful",
  "errors": null,
  "modelList": [
    {
      "id": 1,
      "bankCode": "PRO",
      "bankName": "Providus Bank New",
      "bankCbnCode": "101"
    },
    {
      "id": 22,
      "bankCode": "ACC",
      "bankName": "Access Bank",
      "bankCbnCode": "058"
    },
    {
      "id": 23,
      "bankCode": "FBN",
      "bankName": "First Bank New",
      "bankCbnCode": "123"
    }
  ],
   "count": 3
}
Updated about 4 years ago
