Virtual Account Services
  1. Transaction
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. Transaction

Transaction Query

GET
/transaction/query/{transactionReference}
This operation retrieves the details of a credit or debit transaction.

Path Parameter#

Field NameTypeRequiredDescription
transactionReferencestringtrueThe unique reference code used to identify and track the transaction being queried.

Response Body#

Field NameTypeDescription
transactionTypestringThe type of transaction (e.g., refund, payment).
amountdecimalThe amount associated with the transaction.
narrationstringA brief description or reason for the transaction.
classificationCodestringA code used to categorize the transaction.
successbooleanIndicates whether the transaction was successful (true) or not (false).
traceIDstringA unique identifier used for tracking and debugging purposes.
transactionReferencestringA unique identifier assigned to the transaction.
accountIDstringThe unique identifier of the account involved in the transaction.
transactionTimestringThe date and time when the transaction was processed.

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 '/transaction/query/NG-0003'

Responses

🟢200Transaction Query
application/json
Body

Example
{
    "transactionType": "CREDIT",
    "amount": 7,
    "narration": "Transactional Test",
    "classificationCode": "SUBLEDGER001_CREDIT",
    "success": true,
    "traceID": "05f18881-3db3-401a-a24e-7827b1c9e49a",
    "transactionReference": "NG-0003",
    "accountID": "0000000238",
    "transactionTime": "2023-03-20T20:03:10.000+00:00"
}
Modified at 2025-03-15 15:09:24
Previous
Debit Account [Agency Banking]
Next
Transaction Details
Built with