In section about parameters, there's a paragraph that allows to use AddObject
instead of several AddParameters
:
var params = new {
status = 1,
priority = "high",
ids = new [] { "123", "456" }
};
request.AddObject(params);
There are two questions:
Answering on my questions:
AddParameter
, hence developer should use AddQueryParameter
.