Bank Account

Get bank account details

Returns all your saved bank accounts for a given currency. The bank account details used to make payouts to your customers.

get/bankaccount

Query parameters

walletIdstring uuid

The wallet ID to get the bank account for (optional)

currency'NGN'

The currency to get the bank account for (optional). Only NGN is supported at the moment.

Response

Bank account response

statusstring string

Example response

{
  "status": "ok",
  "data": [
    {
      "bankName": "KUDA MICROFINANCE BANK",
      "bankCode": "090267",
      "bankAccountNumber": "0123456789",
      "bankAccountName": "Satoshi Nakamoto",
      "walletId": "d1614a76-9c7f-4111-98a7-43199f307e5b-123456789"
    }
  ]
}

Changes

Changed in 2 of the 32 revisions of this API.32

  • d0fae6875ede31See the full diff
    • removed the enum value BTC from the query request parameter currency

      request-parameter-enum-value-removed

    • removed the enum value KES from the query request parameter currency

      request-parameter-enum-value-removed

    • removed the enum value USD from the query request parameter currency

      request-parameter-enum-value-removed

    • removed the KES enum value from the data/items/currency response property for the response status 200

      response-property-enum-value-removed

    • endpoint added

      endpoint-added