I have an API with two params, the first is from URI the second from the Body, the generated doc with swagger take all params from URI, it doesn't put the body params in the body. Is it a limit for swagger or should I add some configuration?
public IHttpActionResult Put([FromUri] string id, [FromBody] string name, [FromBody] bool activate = false) { return Ok(); } Thanks.