public ActionResult GetUserList([FromBody] JObject postbody) { List <UserDetails> readud = new List <UserDetails>(); string Action = postbody["Action"].ToString(); readud = adal.GetAllUser(Action); return(Ok(readud)); }