Intra Bank(Local) Fund Transfer
This processes a transfer between two customer accounts within the same institution
Overview
To process a transfer between two customers within the same institution you make a request by passing Amount ,fee ,FromAccountNumber ToAccountNumber , RetrievalReference ,Narration and AuthenticationKey in the request body to the local funds transfer endpoint.
Transaction type: Localfundtransfer
Transaction Query (TSQ) Interval Time: 60 second
Request Payload
Name | Data Type | Description |
---|---|---|
Amount | String | Amount to be transferred in Kobo |
Fee | String | Fee |
FromAccountNumber | String | Account number of the sender or payer |
ToAccountNumber | String | Beneficiary/Receiver’s account number |
RetrievalReference | String | Unique reference for transaction (12 characters max) |
Narration | String | Transaction Narration (maximum of 100 characters) |
AuthenticationKey | String | Authentication Key for the request |
Expected Request
{
"FromAccountNumber": "1100037760",
"Amount": "1000",
"ToAccountNumber": "1100037777",
"RetrievalReference": "testintra1",
"Narration": "Local funds transfer",
"AuthenticationKey": "c66ef21b-cf4d-420f-9c29-aee513bd6854"
}
Expected Response
If the request is successful, it returns a status code of 200 with a response body.
{
"IsSuccessful": true,
"ResponseMessage": "Approved by Financial Institution",
"ResponseCode": "00",
"Reference": "A2009160012"
}
You can check out API reference for Intra Bank (Local) Fund Transfer
Updated about 1 year ago