I have an MVC Web API Get method that accepts a List
as a parameter. I\'m trying to access this method using simply the browser bar. How is this d
Make sure your parameter of your action method is marked as [FromUri]. By default the value is expected to be passed from the body of the request since it is a complex type.
public List<string> Get([FromUri] List<string> parameter)
{...}
The query string parameter should be of this format .../APIName?parameter[]=value1¶meter[]=value2&...
.
Hope this helps.