Payment Inquiry
Endpoint: GET /makepayment/enquiry?txn_ref={txn_ref}
Description: Retrieves the status of a payment using the transaction reference.
Authentication: Basic Auth (Username, Password)
Query Parameters:
txn_ref (required): The transaction reference (e.g., 122433).
Sample Implementation
curl --request GET \
--url 'http://154.113.16.142:9999/provipay/webapi/makepayment/enquiry?txn_ref=122433' \
--header 'Authorization: Basic <base64-encoded-username:password>'
Response:
200 OK: Returns a JSON object with validation results.
{
"status": "successful"
}
Last updated