How can I extract the Data from Nested JSON?
I’m my case. How can I extract just the text Test Value
Hey @mcnaveen!
Looks like the JSON object is parsed as a string and hence you are not able to directly get the value you want. You can use the Function node and convert the string back into a JSON object using the JSON.parse() method.
Here is an example workflow that might help
Thanks @harshil1712 It’s working
I am glad I was able to help. Have fun!
1 Like
@mcnaveen, Could you post node how you did it?
1 Like
You need to use something like this:
JSON.parse($json.fieldname).nestedfieldname
2 Likes