Core Banking Services
  1. Transfer
Core Banking Services
  • Introduction
  • Terminologies
  • Webhooks
  • Authentication
  • Account
    • Product List
      GET
    • Create Account
      POST
    • Find Client
      POST
    • Accounts
      GET
    • Create Additional Account
      POST
    • Account Details By BVN
      GET
    • Get Client Addresses
      GET
    • Get Account Details
      GET
    • Get Account Summary
      GET
    • Client Images
      GET
    • Update BVN
      POST
    • Update Transaction Limit
      POST
  • KYC
    • Get KYC Info
      POST
    • Update KYC
      POST
  • Transaction
    • Payment Types
      GET
    • Debit Account
      POST
    • Credit Account
      POST
    • Transaction History
      GET
    • Transaction Details
      GET
  • Transfer
    • Get Institutions
      GET
    • Name Inquiry
      POST
    • Interbank Transfer
      POST
    • InterBank Transfer Query
      GET
    • Transfer Details
      GET
    • IntraBank Transfer
      POST
    • Intrabank Transfer To Virtual Accounts
      POST
  • Reporting
    • Report Types
    • Get Report Parameters
    • Create Report
    • Report Details
    • Get Reports
  1. Transfer

Intrabank Transfer To Virtual Accounts

POST
/core/transfer/intra/va
This API facilitates fund transfers to a virtual accounts within the same institution. It requires details such as the source and destination account numbers, the transfer amount, and an optional narration.

Request Body#

Field NameTypeMandatoryDescription
sourceAccountNUBANStringtrueThe NUBAN (Nigerian Uniform Bank Account Number) of the sender.
destinationAccountNUBANStringtrueThe NUBAN of the recipient account.
amountDecimaltrueThe amount to be transferred.
narrationStringtrueAn optional note describing the purpose of the transfer.

Response Body#

Field NameTypeDescription
sourceAccountNUBANStringThe NUBAN of the sender account.
destinationAccountNUBANStringThe NUBAN of the recipient account.
amountDecimalThe amount that was transferred.
narrationStringThe narration provided in the request.
transactionIDIntegerA unique identifier for the transaction.

Request

Body Params application/json
object {0}
Example
{
    "sourceAccountNUBAN": "0000000017",
    "destinationAccountNUBAN": "0000000031",
    "amount": 1,
    "narration": "intrabank Test Money"
}

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 '/core/transfer/intra/va' \
--header 'Content-Type: application/json' \
--data-raw '{
    "sourceAccountNUBAN": "0000000017",
    "destinationAccountNUBAN": "0000000031",
    "amount": 1,
    "narration": "intrabank Test Money"
}'

Responses

🟢200Success
application/json
Body
object {0}
Example
{
    "sourceAccountNUBAN": "0000000017",
    "destinationAccountNUBAN": "0000000031",
    "amount": 1,
    "narration": "intrabank Test Money",
    "transactionID": 4
}
Modified at 2025-03-19 15:04:03
Previous
IntraBank Transfer
Next
Report Types
Built with