Virtual Account Services
  1. Dashboard
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 Subledger transfers
      • Get Transfer Details
      • Name Inquiry
    • Refund
      • Refund Details
  • Admin
    • Accounting
      • Get GL Accounts
      • Get Classification Codes
    • Dashboard
      • Dashboard Summary
        GET
      • Dashboard Transactions
        GET
      • Dashboard Transaction Details
        GET
    • 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. Dashboard

Dashboard Transaction Details

GET
/admin/dashboard/transactionDetails/{transactionId}
This API provides detailed information about a specific transaction by utilizing its unique identifier, transactionId. It enables users to retrieve key transaction details, such as the source and destination account information, transaction status, amount, and any associated split payments.

Request Parameters#

Field NameTypeRequiredDescription
transactionIdstringtrueThe unique identifier of the transaction record.

Response Body#

The response is a JSON object containing the following fields:
Field NameTypeDescription
sourceInstitutionCodestringThe unique code identifying the source financial institution.
destinationInstitutionCodestringThe unique code identifying the destination financial institution.
sourceBankNamestringThe name of the bank from which the transaction originates.
sourceAccountNamestringThe name associated with the source account.
sourceAccountNUBANstringThe NUBAN (Bank Account Number) of the source account.
destinationBankNamestringThe name of the bank receiving the transaction.
destinationAccountNamestringThe name associated with the destination account.
destinationAccountNUBANstringThe NUBAN (Bank Account Number) of the destination account.
amountnumberThe monetary value of the transaction.
narrationstringA description or note regarding the transaction.
classificationCodestring/nullA classification identifier for the transaction, if applicable.
transactionStatusstringThe current status of the transaction (e.g., "CONFIRMED").
traceIDstring/nullA unique identifier for tracking the transaction.
transactionReferencestringA reference number assigned to the transaction for record-keeping.
splitPaymentsarrayA list of split payments associated with the transaction.
├── idnumberThe unique identifier of the split payment.
├── groupCodestringThe group code associated with the split payment.
├── typestringThe type of split payment (e.g., "FIXED").
├── amountnumberThe monetary value allocated to the split payment.

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 '/admin/dashboard/transactionDetails/'

Responses

🟢200Dashboard Transaction Details
application/json
Body

Example
{
    "sourceInstitutionCode": "000012",
    "destinationInstitutionCode": "090682",
    "sourceBankName": "STANBIC IBTC BANK PLC",
    "sourceAccountName": "MOHAMMED BALARABE OLATEJU",
    "sourceAccountNUBAN": "0040088210",
    "destinationBankName": "BUY POWER MFB",
    "destinationAccountName": "BuyPower-0207213090914",
    "destinationAccountNUBAN": "0000000000",
    "amount": 100,
    "narration": "Hihi",
    "classificationCode": null,
    "transactionStatus": "CONFIRMED",
    "traceID": null,
    "transactionReference": "000012240622174859980170000012",
    "splitPayments": [
        {
            "id": 2,
            "groupCode": "T0OADVCJ5E",
            "type": "FIXED",
            "amount": 99
        }
    ]
}
Modified at 2025-03-02 14:42:57
Previous
Dashboard Transactions
Next
Get Group Codes
Built with