Resolve bank code

This endpoint retrieves all available recipient banks with their respective bank codes.

It returns the following parameters

  1. Bank name
  2. Bank code
  3. bank cbn code

Process Flow

  1. Make a GET call to Bank Codes.
  2. 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
}