I am trying to call following function (asp.net web api core) from PostMan:
[HttpPost]
public InfluencerSearchResultWithFacets Post(string q, string group, List<string> subGroups)
{
return GetSearchResult("",null,null);
}
But I get following error: A non-empty request body is required
So you can create a model like
and use it
This is if you fit Json format. Also you can leave some parameters in URL and other pass as a body like