I can't seem to access any of the values in my Jive API response. This is what I've got so far, which works. I just need to get the values, but seem to be returning null every time I try to access them. When I iterate the object, I can access the value of the allocated space, ie. single characters as opposed to the value of a key. Please help!
function include(filename) {
var finalRequest = UrlFetchApp.fetch('https://www.cloudconnect.xxx...);
var data = finalRequest.toString().replace("throw 'allowIllegalResourceCall is false.';",
"").trim();
for(i in data){
Logger.log(data);
}
}