Hello,
I need to pull the "times" from dweet.io and put each into their own respective textbox (right now they all say INF but will eventually have actual times). I'm trying to put the data into a list, so that I can index through it and fill in the Stop ETAs. I'm not sure what else I need to do after the .JsonTextDecode to make this happen, due to dweet having several lines of data aside from just the "times".
You need to convert this responseContent to Dictionary using Web.JsonTextDecodeWithDictionary, then Dictionary's get vale at key path.
The times looks like a String, not a List, you can use list from csv row to convert String to List.