Intrabank Transfer To Virtual Accounts
Run in Apidog
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 Name Type Mandatory Description sourceAccountNUBAN
String true The NUBAN (Nigerian Uniform Bank Account Number) of the sender. destinationAccountNUBAN
String true The NUBAN of the recipient account. amount
Decimal true The amount to be transferred. narration
String true An optional note describing the purpose of the transfer.
Response Body # Field Name Type Description sourceAccountNUBAN
String The NUBAN of the sender account. destinationAccountNUBAN
String The NUBAN of the recipient account. amount
Decimal The amount that was transferred. narration
String The narration provided in the request. transactionID
Integer A unique identifier for the transaction.
Request Body Params application/json
{
"sourceAccountNUBAN" : "0000000017" ,
"destinationAccountNUBAN" : "0000000031" ,
"amount" : 1 ,
"narration" : "intrabank Test Money"
}
Request samples 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 application/json Generate Code
{
"sourceAccountNUBAN" : "0000000017" ,
"destinationAccountNUBAN" : "0000000031" ,
"amount" : 1 ,
"narration" : "intrabank Test Money" ,
"transactionID" : 4
}
Modified at 2025-03-19 15:04:03