To somebody knowing postman very trival question. I have a sample project with WEB Api.
My Actiton methos looks like this:
public async Task Index(string test1, string test2, string test3)
I have something like:
{
"test2" : 1,
"test2" : 2,
"test3" : 3
}
as a raw JSON in a parameters that are passed in. If I run my test from swagger it works (breakpoint stops etc), but from postman it does not. What is missed here. I know it something obvious or stupid….