I am using iframe approach in a .net mvc app and we are setting one return url while sending the request. My question is how can i know the payment status & ccavenue payment reference no and other payment related params from response url
My retun url action is something like this
[HttpGet]
public ActionResult ResponseCCPayment()
{
//but how to read reposne params from here
return Content("got response frm ccveue");
}
From CCAvenue documentation i can see redirect_url CCAvenue will post the status of the order along with the parameters to this URL
But no details on what parameters. Can someone help to get this
Hope this helps.