public IActionResult SetOneCoptions([FromBody] OneCOptions newoptions) { if (newoptions == null) { return(Ok("empty body")); } _proxy.SetOptions(newoptions); return(Ok(newoptions)); }