I’ve been going crazy the last few days trying to make the bulk deleting Google Sheets rows via Make an API call work but am still struggling.
My scenario produces a clean, comma-separated string of row numbers, already sorted in descending order [{“text”: “25,24,23,22,21,20,19,18,17,16,15,14,13,12,11,10,9,8,7,6,5,4,3,2”}] and my goal is to map this string into the requests array for the spreadsheets.batchUpdate endpoint in my Make an API Call module.
However, my current automation fails with a parseNumber error, as it’s trying to parse the entire string at once instead of each individual number. What’s the best, non-JavaScript method to iterate over a string like this and build the JSON structure for the API call?


