GetProvidusTransactionStatus
Validates a single transaction reference and returns the status of a Providus-to-Providus transaction. It is recommended to perform a status requery for 15 minutes to confirm the final status.
URI: /GetProvidusTransactionStatus
HTTP Method: POST
Headers:
Accept: application/json
Content-Type: application/json
Request body (JSON):
{
"transactionReference": "2345677777",
"userName": "test",
"password": "test"
}
{
"amount": "100.0",
"creditAccount": "1700263070",
"debitAccount": "5900085856",
"transactionReference": "2345677777",
"transactionDateTime": "2020-05-04 14:12:11.0",
"currency": "NGN",
"responseMessage": "OPERATION SUCCESSFUL",
"responseCode": "00"
}
Sample Implementation
curl -X POST http://154.113.16.142:8882/postingrest/GetProvidusTransactionStatus \
-H "Accept: application/json" \
-H "Content-Type: application/json" \
-d '{"transactionReference":"2345677777","userName":"test","password":"test"}'
The above command returns JSON structured like this:
{
"amount": "100.0",
"creditAccount": "1700263070",
"debitAccount": "5900085856",
"transactionReference": "2345677777",
"transactionDateTime": "2020-05-04 14:12:11.0",
"currency": "NGN",
"responseMessage": "OPERATION SUCCESSFUL",
"responseCode": "00"
}
Last updated