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
      POST
    • Get Invoice Detail
      GET
    • List Merchant Invoices
      GET
  • Refunds
    • Initiate Refund
    • Get Refund Status
    • Get Refunds
  • Notifications
    • Notification
    • Send Notification
  • Merchant
    • Account
      • Get Account
      • Activate Sub Ledger For Merchant
      • Get SubLedger Callback Urls
      • Set SubLedger Callback Urls
      • Get Collection Accounts
    • 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

Create Account

POST
/account
This API allows users to create a new account and generates a NUBAN that can be used for interbank transfers.

Request Body#

Field NameTypeRequiredDescription
namestringTRUEThe name associated with the account.
bvnstringTRUEThe Bank Verification Number (BVN) used for identity verification.
groupCodestringTRUEA unique code identifying the group to which the account belongs.
accountIDstringTRUEA system-generated NUBAN that serves as the account's unique identifier and can be used for interbank transactions.

Response Body#

Field NameTypeDescription
namestringThe name associated with the created account.
bvnstringThe BVN linked to the account for identity verification.
accountIDstringThe NUBAN assigned to the account, which can be used for interbank transfers.
createdDatestringThe timestamp indicating when the account was created.
updatedDatestringThe timestamp indicating the last update made to the account.

Request

Body Params application/json

Example
{
    "name": "POS Agent 131",
    "accountID": "0812345689",
    "bvn": "1235",
    "groupCode": "1UI1KJ118C"
}

Request 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 POST '/account' \
--header 'Content-Type: application/json' \
--data-raw '{
    "name": "POS Agent 131",
    "accountID": "0812345689",
    "bvn": "1235",
    "groupCode": "1UI1KJ118C"
}'

Responses

🟢200Create Account
application/json
Body

Example
{
    "name": "Landmark POS Agents 5 SubLedger",
    "createdDate": "2023-03-22T12:27:46.499+00:00",
    "updatedDate": "2023-03-22T12:27:46.499+00:00",
    "bvn": "12121211221",
    "accountID": "0000000379"
}
Modified at 2025-04-02 07:52:57
Previous
Authentication
Next
Rename Account
Built with