Parse data from editor into a Json object from rest (MVC WebApi) server side
Parse data from editor into a Json object from rest (MVC WebApi) server side
JasonColeyNZ
Posts: 11Questions: 4Answers: 0
This is what I have in the ApiController, this is being hit, but I need to parse the object as I need to do processing before it is passed to another web service
[HttpPost]
public IHttpActionResult Part( )
{
var request = HttpContext.Current.Request;
//how can i get <PartList> object from request?
return Json (new {success = true });
}
This discussion has been closed.
Answers