Json – how to pass complex object parameters in postman?
my c# api takes two parameters, one complex object and one string: [HttpPost, Route("paramtester")] public string paramtester(people user, string message) { return user.name + message;} how do I pass by a json object in the body? I have tried passing…