Hello,
I am using this module for the transaction in my website using PayUMoney. The transaction functionality is working fine but when i request for refund using transactionId(I want to know that paymentId === transactionId? If no then what about paymentID).
My account is in testing mode.
But when i request for refund function at that time i am getting error like
rows: 0,
message: 'Something went Wrong guid (guid is here) sessionId null',
result: null,
guid: 'guid is here',
sessionId: 'null',
errorCode: null }
My code is like
payumoney.refundPayment(req.params.paymentId, req.params.amount, function(error, response) {
if (error) {
// Some error
} else {
console.log(response);
}
});
Hello, I am using this module for the transaction in my website using
PayUMoney
. The transaction functionality is working fine but when i request for refund using transactionId(I want to know thatpaymentId === transactionId? If no then what about paymentID
).My account is in testing mode.
But when i request for refund function at that time i am getting error like
My code is like
Can anyone assist me what is going wrong here?