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

Core Banking Intrabank Transfer

POST
/transfer/payout/core
This operation facilitates an intrabank transfer to a Core Banking Account, enabling seamless fund transfers within the same financial institution.

Request Body#

Field NameTypeRequiredDescription
fromAccountIDstringtrueThe unique identifier of the account from which the funds will be debited.
toAccountIDstringtrueThe unique identifier of the recipient's account.
amountdecimaltrueThe amount to be transferred.
narrationstringtrueA brief description or purpose of the transaction.

Response Body#

Field NameTypeDescription
idstringA unique identifier assigned to the transaction.
nubanstringThe NUBAN (Bank Account Number) associated with the transaction.
amountdecimalThe transaction amount processed.
paymentTypeIdstringThe identifier representing the type of payment used.
notesstringAdditional information or remarks related to the transaction.

Request

Body Params application/json

Example
{
    "fromAccountID":"9000000231",
    "toAccountID":"2010072270",
    "amount":1,
    "narration":"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/payout/core' \
--header 'Content-Type: application/json' \
--data-raw '{
    "fromAccountID":"9000000231",
    "toAccountID":"2010072270",
    "amount":1,
    "narration":"Test"
}'

Responses

🟢200Intrabank Transfer [To CoreBanking Account]
application/json
Body

Example
{
    "id": 303,
    "nuban": "0000000093",
    "amount": 7,
    "paymentTypeId": 175,
    "notes": "CREDIT - SubLedger Transfer Test"
}
Modified at 2025-03-15 07:44:42
Previous
Virtual Account Intrabank Transfer
Next
Collection Accounts Intrabank Transfer
Built with