Virtual Account Services
  1. Transfer
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
      • Activate Sub Ledger For Merchant
      • Get SubLedger Callback Urls
      • Set SubLedger Callback Urls
      • Get Collection Accounts
    • Transfer
      • Get Transfer History
        GET
      • Get Subledger transfers
        GET
      • Get Transfer Details
        GET
      • Name Inquiry
        POST
    • 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. Transfer

Name Inquiry

POST
/core/merchant-portal/name-inquiry
This operation retrieves the account details of the destination account, commonly known as account name enquiry, to verify the recipient's information before transactions on the merchant portal.

Request Body#

Field NameTypeRequiredDescription
destinationInstitutionCodestringtrueThe unique code identifying the recipient's financial institution.
destinationAccountNumberstringtrueThe NUBAN (Bank Account Number) of the recipient's account.

Response Body#

Field NameTypeDescription
sessionIDstringA unique identifier for the transaction session.
transactionIdstringA unique reference ID assigned to the transaction.
destinationInstitutionCodestringThe unique code identifying the recipient's financial institution.
destinationAccountNUBANstringThe NUBAN (Bank Account Number) of the recipient's account.
destinationAccountNamestringThe name of the recipient's account holder.
destinationAccountBankVerificationNumberstringThe Bank Verification Number (BVN) associated with the recipient's account.
destinationBankNamestringThe name of the recipient's financial institution.
nameInquiryReferencestringA reference ID generated during the name inquiry process.

Request

Body Params application/json

Example
{
    "destinationInstitutionCode":"000001",
    "destinationAccountNumber":"00000125"
}

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 POST '/core/merchant-portal/name-inquiry' \
--header 'Content-Type: application/json' \
--data-raw '{
    "destinationInstitutionCode":"000001",
    "destinationAccountNumber":"00000125"
}'

Responses

🟢200Name Inquiry
application/json
Body

Example
{
    "sessionID": "292329jh235123991",
    "transactionId": "290j2jd5655512301",
    "destinationInstitutionCode": "000001",
    "destinationAccountNUBAN": null,
    "destinationAccountName": "Jack Robbinson",
    "destinationAccountBankVerificationNumber": "19192012",
    "destinationBankName": "STERLING BANK PLC",
    "nameInquiryReference": "290j2jd5655512301"
}
Modified at 2025-03-02 11:17:58
Previous
Get Transfer Details
Next
Refund Details
Built with