public ActionResult GetVendorList([FromBody] JObject postbody) { List <VendorDetails> vd = new List <VendorDetails>(); string Action = postbody["Action"].ToString(); vd = adal.VendorList(Action); return(Ok(vd)); }