Hey Guys,
NOT developer (mistake that can’t be undone),
I’m trying to bundle a lot of responses and edit them to 1 value to be sent out as JSON.
I’ve created a code by zapier step that pulls this out:
I want to pull out the entire contents of “JSON” to be used as a JSON payload, something like this:
{
"dayOfWeek": "1",
"closed": false,
"MondayFrom1": "07:30",
"MondayTo1":"13:30",
"MondayFrom2":"12:30",
"MondayTo2":"13:30"
},
{
"dayOfWeek":"2",
"closed":"true"
},
{
"dayOfWeek":"3",
"closed":"false",
"WednesdayFrom1": "07:00",
"WednesdayTo1":"21:00",
}
But there is no “JSON” value, it just breaks it down to a million little fields (“json dayOfWeek”)
How can I solve that?
Thanks!