Verify Payment
//A code snippet of how to consume the API
var myHeaders = new Headers();
myHeaders.append("Accept", "application/json");
myHeaders.append("Content-Type", "application/json");
var raw = JSON.stringify({
"transaction_id": "ACX0000000",
"private_key": "PUB_TEST_0000000"
});
var requestOptions = {
method: 'POST',
headers: myHeaders,
body: raw,
redirect: 'follow'
};
fetch("https://demo.monicredit.com/api/v1/payment/transactions/verify-payment", requestOptions)
.then(response => response.text())
.then(result => console.log(result))
.catch(error => console.log('error', error));
//A code snippet of how to consume the API
<?php
$curl = curl_init();
curl_setopt_array($curl, array(
CURLOPT_URL => 'https://demo.backend.monicredit.com/api/v1/payment/transactions/verify-payment',
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => '',
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 0,
CURLOPT_FOLLOWLOCATION => true,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => 'POST',
CURLOPT_POSTFIELDS =>'{
"transaction_id": "ACX0000000",
"private_key": "PUB_TEST_0000000"
}',
CURLOPT_HTTPHEADER => array(
'Accept: application/json',
'Content-Type: application/json'
),
));
$response = curl_exec($curl);
curl_close($curl);
echo $response;
POST
https://demo.backend.monicredit.com/api/v1/payment/transactions/verify-payment
Request Body
{
"status": true,
"message": "Transaction Successful",
"data": 10201,
"newdata": {
"amount": 10001,
"orderid": "new111111",
"transid": "ACX00000000",
"date_paid": "2023-10-24T19:07:47.916881Z",
"status": "APPROVED",
"channel": "TRANSFER",
"balance": 10201
}
}
{
"status": false,
"message": "Insufficient Fund"
}
Last updated