Hello,
I need help with an app that returns a JSON and I would like to format it and make it readable.
I searched the forum but the solutions didn't work in my case.
I'm attaching a screenshot.
This is the JSON that I retrieve:
[{"Info1":"text1","Info2":"text2","Result":"text3"}]
And this is what I would like:
[
{
"Info1":"text1",
"Info2":"text2",
"Result":"text3"
}
]
Thank you.