I am using Zoho deluge to write a function. I actually call an API and I get the following response:
[
{"name": "abc", email: "[email protected]" },
{"name": "qwc", email: "[email protected]" }
]
I have converted it into the JSONArray (Map). However, I do not want to run a loop to get email values because there are 10k entries. Could anyone please help me to extract the email column from the response?
Only way i know(for deluge) is to use a loop. Unfortunately Zoho interrupts a Function after 40 loops(Guess it was 40). Do you have any option to give the API parameters to filter for the values you need?(In Zoho it is possible)