For the complete documentation index, see llms.txt. This page is also available as Markdown.

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"
}
{
  "transactionReference": "20191119143501",
  "responseMessage": "TRANSACTION REFERENCE EXISTS",
  "responseCode": "7709"
}
{
  "transactionReference": "20191119143501",
  "responseMessage": "TRANSACTION REFERENCE EXISTS",
  "responseCode": "7709"
}
{
  "requestSuccessful": false,
  "responseMessage": "Exception; Failed",
  "responseCode": "03"
}

Sample Implementation

The above command returns JSON structured like this:

Last updated