Currently in my code I am appending my parameter "users" this way:
request.AddParameter("application/json", "{\"users\": " + users+ "}", ParameterType.RequestBody);
I have seen other examples in which the parameter can be appended using curly braces, something like this:
request.AddParameter("application/json", "{\"users\": " {users} "}", ParameterType.RequestBody);
But that is not the correct syntax, would it be possible someone show me how to append the panelists parameter correctly, using curly braces rather that (+) sign?
Thank you.