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

Virtual Account Intrabank Transfer

POST
/transfer/intra
This API transfers funds within the same bank from a source account to another virtual account.

Request Body#

Field NameTypeRequiredDescription
fromAccountIDstringTRUEThe unique identifier of the source account to be debited.
toAccountIDstringTRUEThe unique identifier of the destination sub-ledger account to be credited.
amountdecimalTRUEThe amount to be transferred.
narrationstringTRUEA brief, precise description of the transfer purpose.

Response Body#

Field NameTypeDescription
accountIDstringThe destination sub-ledger account that received the credit (toAccountID).
classificationCodestringThe classification code associated with the transfer transaction.
amountdecimalThe transferred amount.
narrationstringA description or note regarding the transfer.
transactionReferencestringA unique reference identifier generated for the transaction.
transactionTypestringIndicates the type of transaction; will be "CREDIT" for this operation.
successbooleanConfirms whether the transfer was successfully processed.
traceIDstringA unique tracking identifier for the transaction.
transactionTimestringThe timestamp when the transaction was processed.

Request

Body Params application/json

Example
{
    "fromAccountID":"4000000178",
    "toAccountID":"4000000192",
    "classificationCode":"0",
    "amount":7,
    "narration":"SubLedger Transfer Test"
}

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 POST '/transfer/intra' \
--header 'Content-Type: application/json' \
--data-raw '{
    "fromAccountID":"4000000178",
    "toAccountID":"4000000192",
    "classificationCode":"0",
    "amount":7,
    "narration":"SubLedger Transfer Test"
}'

Responses

🟢200Intrabank Transfer
application/json
Body

Example
{
    "transactionType": "CREDIT",
    "amount": 7,
    "narration": "SubLedger Transfer Test - SL TRANSFER CREDIT",
    "classificationCode": "0",
    "success": true,
    "traceID": "37e19a43-2c76-48df-b228-ab6ef1813cc5",
    "transactionReference": "4-SL-TRSF-CRDT",
    "accountID": "4000000192",
    "transactionTime": "2023-09-11T03:16:03.839+00:00"
}
Modified at 2025-03-17 22:10:27
Previous
Transfer Enquiry
Next
Core Banking Intrabank Transfer
Built with