I am pulling data from a web service and it is formatted as JSON. I am writing a Google Apps Script for Google Sheets that will populate the data for me. My problem is, I can\'t
Apps script is (pretty much) just Javascript; plain-old JSON.parse is your best option for parsing JSON into an object representation.
You can also use JSON.stringify to serialize an object into a string representation.
JSON.stringify