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

Get Transfer Details

GET
/merchant/transfers/details/{transactionId}}
This API retrieves detailed information about a specific transfer transaction using the provided transaction ID. The response includes comprehensive details such as institution codes, account details, transferred amount, charges, and any associated split payments.

Path Parameters#

Field NameTypeRequiredDescription
transactionIdstringTRUEThe unique identifier for the transfer transaction (provided as a path variable).

Response Body#

Field NameTypeDescription
sourceInstitutionCodestringCode representing the source institution.
destinationInstitutionCodestringCode representing the destination institution.
sourceBankNamestringName of the source bank.
sourceAccountNamestringName of the source account holder.
sourceAccountNUBANstringNUBAN (account number) of the source account.
destinationBankNamestringName of the destination bank.
destinationAccountNamestringName of the destination account holder.
destinationAccountNUBANstringNUBAN (account number) of the destination account.
amountnumberAmount transferred.
narrationstringDescription or note associated with the transfer.
classificationCodestringCode classifying the transaction (if available).
transactionStatusstringCurrent status of the transaction (e.g., CONFIRMED).
traceIDstringIdentifier used for tracking the transaction (if available).
transactionReferencestringUnique reference number for the transaction.
totalChargesnumberTotal charges applied to the transfer.
splitPaymentsarrayArray of split payment objects detailing individual payment splits.
merchantSplitPaymentsarrayArray of merchant split payment objects detailing specific deductions.

Split Payment Object#

Field NameTypeDescription
idintegerUnique identifier for the split payment.
namestringName or description of the split payment.
groupCodestringGroup code associated with the split payment.
typestringType of split (e.g., FIXED).
amountnumberAmount deducted in the split payment.

Merchant Split Payment Object#

Field NameTypeDescription
idintegerUnique identifier for the merchant split payment.
namestringName or description of the merchant split payment.
groupCodestringGroup code associated with the merchant split payment.
typestringType of split (e.g., FIXED).
amountnumberAmount deducted in the merchant split payment.

Request

Path Params

Query 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 -g --request GET '/merchant/transfers/details/}?inward=true'

Responses

🟢200Get Transfer 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",
    "totalCharges":15,
    "splitPayments": [
        {
            "id": 2,
            "name":"PAYE",
            "groupCode": "T0OADVCJ5E",
            "type": "FIXED",
            "amount": 5
        }
    ],
    "merchantSplitPayments": [
        {
            "id": 2,
            "name":"Stamp Duty",
            "groupCode": "T0OADVCJ5E",
            "type": "FIXED",
            "amount": 10
        }
    ]
}
Modified at 2025-03-17 22:00:33
Previous
Get Subledger transfers
Next
Name Inquiry
Built with