Fund Transfer Architecture
Fund Transfer to Account Request/Response
Fund Transfer is a method when called, credits beneficiary with funds. To call the fund transfer method table below shows what parameters to pass.
- Sample Request
- Sample Response
POST / fund-transfer
curl `${baseurl}/fund-transfer`
-H "Content-type: application/json"
-X POST
-d '{
"action":"FT",
"terminalId":"7000000001",
"transaction": {
"pin": "kghxqwveJ3eSQJip/cmaMQ==",
"senderName": "Sender’s Name;Sender’s Account Number;Recipient’s Name",
"bankCode": "033",
"amount": "5",
"description": "Fund Transfer",
"destination": "2125347370",
"reference": "08034543212",
"endPoint": "A"
}
}'
POST / fund-transfer
{
"direction": "response",
"reference": "09FG230309155847454PNZ3W1",
"amount": 5,
"totalFailed": 0,
"totalSuccess": 0,
"error": "0",
"message": "Successfully Processed",
"otherReference": "08123232323",
"action": "FT",
"bankCode": 033
}
Fund Transfer To PocketMoni Mobile Request/Response
- Sample Request
- Sample Response
POST / fund-transfer
curl `${baseurl}/fund-transfer`
-H "Content-type: application/json"
-X POST
-d '{
"action":"FT",
"terminalId":"7000000001",
"transaction": {
"pin": "kghxqwveJ3eSQJip/cmaMQ==",
"senderName": "Sender’s Name;Sender’s Account Number;Recipient’s Name",
"bankCode": "700",
"amount": "5",
"description": "Fund Transfer",
"destination": "09034363738",
"reference": "FTRestTest002",
"endPoint": "A"
}
}'
POST / fund-transfer
{
"direction": "response",
"reference": "09FG230309155847454PNZ3W1",
"amount": 5,
"totalFailed": 0,
"totalSuccess": 0,
"error": "0",
"message": "Successfully Processed",
"otherReference": "FTRestTest002",
"action": "FT",
"bankCode": 700
}