We are getting the below format data from parameter data_array as a result of the rest api call
[
[
"[{\"ID\":\"12\",\"Name\":\"Raju \",\"FolderName\":\"0028\",\"FACEID\":\"6462\",\"Status\":\"Completed\"},{\"ID\":\"13\",\"Name\":\"Suresh\",\"FolderName\":\"0027\",\"FACEID\":\"27628316.1.0\",\"Status\":\"Completed\"}]"
]
]

We need to read actual data in string format -([{\"ID\":\"12\",\"Name\":\"Raju \",\"FName\":\"0028\",\"FACEID\":\"6462\",\"Status\":\"Completed\"},{\"ID\":\"13\",\"Name\":\"Suresh\",\"FName\":\"0027\",\"FACEID\":\"27628316.1.0\",\"Status\":\"Completed\"}]) from result and need to create a table for the actual data string.
We tried to use the compose action but unable to read the data in the string format.
Any help or suggestions on the same please. Thanks in Advance