hi,
I have a REST service which needs an json array as an input. Like:
{ "array" : [ { "value1" : "abc", "value2": 1.00 }, { "value1" : "def", "value2": 2.00 } ]}
The SmartObjects method gets an Memo input parameter (requestarray). I think I have to expose this input parameter as a list with the serialize list function of the requestarray.
I know how to deserialize response values, but I couldn't figure out how to do it on the input side.
Is there a tutorial somewhere?