Hi, I'm new in this forum ..
I have a process that executes a REST api call and obtains a result similar to a collection:
I would like to convert this response into a Map or into a List
How can I do that ?
Is the "forEach" operation usefull ? How do I use it ?
this is the json response:
{
"myResponse": {
"properties": {
"property": [
{
"name": "aa",
"value": "1"
},
{
"name": "bb",
"value": "2"
},
{
"name": "cc",
"value": "3"
}
]
}
}
}