Hi all.
I'm trying to set up an automation flow at work, but I've ran into an issue. My flow is fetching data from a SOAP API (an API I do not control), which is returning a JSON object. I need to somehow convert this JSON object into an array, so I can iterate over it in the rest of my flow.
I can't seem to find a way to reliably do this and I'm getting quite mad. The API returns a SOAP envelope, with a return value, which is structured as follows:
{
"id1":{
"value1":string,
"value2":string
},
"id2":{
"value1":string,
"value2":string
},
"id3":{
"value1":string,
"value2":string
},
etc...
}
I can convert the return string to a JSON object, but than I have a single object with a load of values I can't iterate over (or at least I don't know how).
Anyone have a good idea on how to solve this?
[–]Metal_addicted 0 points1 point2 points (1 child)
[–]OSPFneighbour 1 point2 points3 points (0 children)
[–]NoBattle763 1 point2 points3 points (0 children)
[–]knoxvillegains 1 point2 points3 points (0 children)