ProvidusFundTransfer

Transfers funds from a specified Providus account to another Providus account.


URI: /ProvidusFundTransfer

HTTP Method: POST

Headers:

  • Accept: application/json

  • Content-Type: application/json

Request (JSON):

{
  "creditAccount": "5900174721",
  "debitAccount": "1700313889",
  "transactionAmount": "2000.45",
  "currencyCode": "NGN",
  "narration": "Testing",
  "transactionReference": "20191119143501",
  "userName": "test",
  "password": "test"
}
{
  "amount": "100.0",
  "transactionReference": "2345677777",
  "currency": "NGN",
  "responseMessage": "OPERATION SUCCESSFUL",
  "responseCode": "00"
}

Sample Implementation

curl -X POST http://154.113.16.142:8882/postingrest/ProvidusFundTransfer \
-H "Accept: application/json" \
-H "Content-Type: application/json" \
-d '{"creditAccount":"5900174721","debitAccount":"1700313889","transactionAmount":"2000.45","currencyCode":"NGN","narration":"Testing","transactionReference":"20191119143501","userName":"test","password":"test"}'

The above command returns JSON structured like this:

{
  "amount": "100.0",
  "transactionReference": "2345677777",
  "currency": "NGN",
  "responseMessage": "OPERATION SUCCESSFUL",
  "responseCode": "00"
}

Last updated