REST module: setting the JSON output order

1
Hello, We are using the REST module to consume a webservice. We create our request data in a specific order, for instance: Create GroupNumber 1, commit Create Question 1 in Group 1, commit Create Question 2 in Group 1, commit Create Question 3 in Group 1, commit ... When calling the Request Java action, the resulting JSON request has a different (random?) order, for instance: { "GroupNumber": 1 "QuestionsInGroup": [ { "QuestionNumber": 3 }, { "QuestionNumber": 1 { "QuestionNumber": 2 }] I realise that JSON is an order-independent format, but is there a way to customize the order of the data in our JSON request? Thanks!
asked
1 answers
3

In the latest version of the module, the order of your referenceset should be maintained.

answered