When UrlFetchApp.fetch is called, it provides an array of objects that are stored in the variable 'results':
var results = [{"Category 1": "Benefits/Compensatio", "Category 2": "Compensation", "Category 3": "Recognizing You", "Processing Team": "myHR Tier 2 US CA"}];
I attempted to access the value associated with "Category 1" using results[0]["Category 1"], but it returned null. I'm struggling to find the correct syntax to extract key-value pairs from the first object in the array.
Hopefully, this question has a simple solution, and it's just a minor oversight on my part. Any help would be greatly appreciated!