Not receiving response in order place for webhook

krishkalyani
Hi Team,

I am not get any response for webhook

here is my asp.net core controller code

------------------

[AllowAnonymous]
[HttpPost]
public IActionResult Index([FromBody] dynamic OrderResponse)
{
string jsonData = Convert.ToString(OrderResponse);

//Process the request

return Ok();
}


----------------------

Please look into this why i am not getting response?
This discussion has been closed.