I know how to map an array response into a list or grid. But when integrating with an external api that return records as a list of object not an array, I am not lucky:
{
"converation1": {name: "John", tag:"good"},
"converation2": {name: "Mike", tag:"better"}
}
Even I can create the response parameters from the test and modify the first node into "$" and mark it as an array, the behavior is not as expected. I think it expect such a response:
[
{"converation1": {name: "John", tag:"good"}},
{"converation2": {name: "Mike", tag:"better"}}
]
But I can't control this api to change. Any suggestion?