OpenAPI 3.0.3UNLICENSED2026-08-1396241401.4 KB

35fe01ca087b

ledger-sub-accounts

Get the bank account number for a sub-account.

Returns the bank account number (and bank details) generated for this sub-account in the given currency, if one exists.

get/ledger/subaccounts/{subAccountIdRef}/account-details

Response

Bank account number details

payinCurrencystring required

Currency the destination account accepts for the deposit.

Example response

{
  "details": {
    "accountName": "John Doe",
    "accountNumber": "230101010",
    "reference": "PROV123456"
  },
  "payinCurrency": "NGN",
  "paymentMethods": [
    {
      "fee": {
        "percentage": 0.0035,
        "fixedAmount": 1.5,
        "currency": "USD"
      },
      "limits": {
        "minAmount": 1,
        "firstParty": {
          "maxPerTransaction": 250000,
          "maxPerDay": 24000
        },
        "thirdParty": {
          "maxPerTransaction": 250000,
          "maxPerDay": 24000
        },
        "currency": "USD"
      },
      "timeline": {
        "minValue": 1,
        "maxValue": 3
      }
    }
  ]
}