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
      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. Transfer

Transfer Enquiry

GET
/transfer/enquiry/{transactionID}
This operation retrieves the status of a transfer by specifying the transactionID, providing real-time updates on whether the transfer is successful, pending, or failed.

Path Parameter#

Field NameTypeRequiredDescription
transactionIDstringtrueThe unique identifier of the transaction

Response Body#

Response Table#

Field NameTypeDescription
idintegerA unique identifier for the transaction record.
destinationInstitutionCodestringThe unique code identifying the recipient's financial institution.
destinationBankNamestringThe name of the recipient's financial institution.
destinationAccountNamestringThe name of the recipient's account holder.
destinationAccountNUBANstringThe NUBAN (Bank Account Number) of the recipient's account.
amountintegerThe amount transferred in the transaction.
narrationstringA brief description or purpose of the transaction.
transactionDatestringThe date and time the transaction was initiated.
transactionIDstringA unique reference ID assigned to the transaction.
sessionIDstringA unique identifier for the transaction session.
transactionStatusstringThe current status of the transaction (e.g., PENDING, SUBMITTED, CONFIRMED).
createdDatestringThe date and time the transaction record was created.
The transactionStatus can be either of these below:
StatusDescription
SUBMITTEDTransaction Submitted but not approved
AUTHORIZEDTransaction Authorized and transfer initiated
SENT_TO_GATEWAY_SUCCESSTransfer Sent Successfully But Not Confirmed By NIBSS and Receiving Institution yet
SENT_TO_GATEWAY_ERRORError Sending Transfer through NIBSS to Receiving Institution
PENDINGTransaction is still processing
UNRESOLVEDFailed In Sending Transfer, Needs Resolution
REJECTEDTransfer Rejected By Admin
CONFIRMEDTransaction confirmed by NIBSS And Receiving Institution

Request

Path Params

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 GET '/transfer/enquiry/090605231027024654124508683355'

Responses

🟢200Transfer Enquiry
application/json
Body

Example
{
    "id": 287,
    "destinationInstitutionCode": "000014",
    "destinationBankName": "ACCESS BANK PLC",
    "destinationAccountName": "MOHAMMED WAZIRI IDRISA",
    "destinationAccountNUBAN": "0075047718",
    "amount": 9000,
    "narration": "iRecharge",
    "transactionDate": "2023-10-27T00:00:00.000+00:00",
    "transactionID": "090605231027024654124508683355",
    "sessionID": "999999231027024654177035507679",
    "transactionStatus": "CONFIRMED",
    "createdDate": "2023-10-27T01:46:48.000+00:00"
}
Modified at 2025-03-15 17:06:19
Previous
Transfer Query
Next
Virtual Account Intrabank Transfer
Built with