It's something like:
www.url.com/bla "A", "b": {"c": "C"}}
Is there a simple clean way to create this?
My current solution is:
var parameters = {"request" => "{\"a\": \"A\", \"b\": {\"c\": \"C\"}}"};
Comm.makeJsonRequest("http://www.url.com/bla", parameters, {}, method(:callback));
I could make a helper class to translate a library to a json object, but if something like that already exist in the CIQ framework, I'd prefer to use that.