Dylan Sather (Pipedream) : The format of the event is specific to your data. Are you receiving any timestamp / date / time information as a part of the incoming request?
Ed Johnson : We are not 
Ed Johnson : Does that mean we can not collect date and time posted?
Ed Johnson : actually, I think I found it.
Dylan Sather (Pipedream) : Yes. Since that arrives as a JSON string, you’ll need to JSON.parse() it to turn it into a JavaScript object, which will let you reference the data by property. So you can just add a new Node.js code step and run something like:
const parsedData = JSON.parse(event.body["data.json"])
this.time = parsedData.time_submitted
Dylan Sather (Pipedream) : here’s another option. See how I get the current date in the format_date step, and pass it in the third column of the row: Add a row to a Google sheet - Pipedream
