Virtual Account Services
  1. Account
Virtual Account Services
  • Introduction
  • Terminologies
  • Webhooks
  • Authentication
  • Account
    • Create Account
      POST
    • Rename Account
      POST
    • Balance Inquiry
      GET
    • Create Bulk Accounts
      POST
    • List Accounts
      GET
  • Transaction
    • Credit Account
      POST
    • Debit Account
      POST
    • Credit Account [Agency Banking]
      POST
    • Debit Account [Agency Banking]
      POST
    • Transaction Query
      GET
    • Transaction Details
      GET
    • Transaction History
      GET
  • Transfer
    • Get Institutions
      GET
    • Name Inquiry
      POST
    • Interbank Transfer
      POST
    • Interbank Transfer [Sync]
      POST
    • Transfer Query
      GET
    • Transfer Enquiry
      GET
    • Virtual Account Intrabank Transfer
      POST
    • Core Banking Intrabank Transfer
      POST
    • Collection Accounts Intrabank Transfer
      POST
  • Invoice
    • Create Invoice
    • Get Invoice Detail
    • List Merchant Invoices
  • Refunds
    • Initiate Refund
    • Get Refund Status
    • Get Refunds
  • Notifications
    • Notification
    • Send Notification
  • Merchant
    • Account
      • Get Account
        GET
      • Activate Sub Ledger For Merchant
        POST
      • Get SubLedger Callback Urls
        GET
      • Set SubLedger Callback Urls
        POST
      • Get Collection Accounts
        GET
    • Transfer
      • Get Transfer History
      • Get Subledger transfers
      • Get Transfer Details
      • Name Inquiry
    • Refund
      • Refund Details
  • Admin
    • Accounting
      • Get GL Accounts
      • Get Classification Codes
    • Dashboard
      • Dashboard Summary
      • Dashboard Transactions
      • Dashboard Transaction Details
    • Group Codes
      • Get Group Codes
      • Set Collection Account
      • Create Group Code
    • Reporting
      • Get Report Types
      • Get Report Parameters
      • Create Report
      • Get Reports
      • Get Reports Details
  1. Account

Get Collection Accounts

GET
/core/merchant-portal/{clientId}/collection-accounts
This API retrieves a list of all collection accounts associated with a specified clientId. The accounts may include Normal, Utility, and Invoice collection types.

Path Parameter#

Field NameTypeRequiredDescription
clientIdstringtrueThe unique identifier of a client (merchant)

Response Body#

Field NameTypeDescription
normalobjectContains details of the normal collection account.
normal.namestringThe name of the normal collection account.
normal.balancedecimalThe total balance available in the normal collection account.
normal.availableBalancedecimalThe balance that is available for transactions.
normal.blockedAmountdecimalThe amount that is currently blocked and not available for transactions.
normal.mainLedgerbooleanIndicates whether the account is a main ledger account (true or false).
normal.bvnstringThe Bank Verification Number (BVN) associated with the account.
normal.groupCodestringThe unique identifier for the account's group.
normal.accountIDstringThe unique account identifier.
Field NameTypeDescription
utilityobjectContains details of the utility collection account.
utility.namestringThe name of the utility collection account.
utility.balancedecimalThe total balance available in the utility collection account.
utility.availableBalancedecimalThe balance that is available for transactions.
utility.blockedAmountdecimalThe amount that is currently blocked and not available for transactions.
utility.mainLedgerbooleanIndicates whether the account is a main ledger account (true or false).
utility.bvnstringThe Bank Verification Number (BVN) associated with the account.
utility.groupCodestringThe unique identifier for the account's group.
utility.accountIDstringThe unique account identifier.
Field NameTypeDescription
invoiceobjectContains details of the invoice collection account.
invoice.namestringThe name of the invoice collection account.
invoice.balancedecimalThe total balance available in the invoice collection account.
invoice.availableBalancedecimalThe balance that is available for transactions.
invoice.blockedAmountdecimalThe amount that is currently blocked and not available for transactions.
invoice.mainLedgerbooleanIndicates whether the account is a main ledger account (true or false).
invoice.bvnstringThe Bank Verification Number (BVN) associated with the account.
invoice.groupCodestringThe unique identifier for the account's group.
invoice.accountIDstringThe unique account identifier.

Request

Path Params

Request Code Samples

Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET '/core/merchant-portal/1/collection-accounts'

Responses

🟢200Get Collection Accounts
application/json
Body

Example
{
    "normal": {
        "name": "Uber Banking Main Account",
        "balance": 0,
        "availableBalance": 0,
        "blockedAmount": 0,
        "mainLedger": false,
        "bvn": "8080909",
        "groupCode": "ER3GZR04KR",
        "accountID": "4000000257"
    },
    "utility": {
        "name": "Landmark POS Agents SubLedger",
        "balance": 0,
        "availableBalance": 0,
        "blockedAmount": 0,
        "mainLedger": false,
        "bvn": "12121211221",
        "groupCode": "0000000127",
        "accountID": "0000000345"
    },
    "invoice": {
        "name": "Main SubLedger",
        "balance": 0,
        "availableBalance": 0,
        "blockedAmount": 0,
        "mainLedger": false,
        "bvn": "123432",
        "groupCode": "0000000086",
        "accountID": "0000000338"
    }
}
Modified at 2025-02-28 15:16:23
Previous
Set SubLedger Callback Urls
Next
Get Transfer History
Built with