hi im new to Make
maybe im not using the right scenario tools but every thing that i’ve tried does not give me the array items as a string delimited by new line
the scenario :
get data from googleSheet (apps script)
convert it into json
one of the json field is an array which i want to send as a long string delimited by new line
INPUT
[
{
“array”: [
{
“calendarName”: “ROOM 3”,
“freeTimeSlots”: [
“07:00 - 07:30”,
“07:00 - 08:00”,
“08:00 - 08:30”,
“08:00 - 09:00”,
“09:00 - 09:30”,
“09:00 - 10:00”,
“10:00 - 10:30”,
“10:00 - 11:00”,
“11:00 - 11:30”,
“11:00 - 12:00”,
“12:00 - 12:30”,
“12:00 - 13:00”,
“13:00 - 13:30”,
“13:00 - 14:00”,
“14:00 - 14:30”,
“14:00 - 15:00”,
“15:00 - 15:30”,
“15:00 - 16:00”,
“16:00 - 16:30”,
“16:00 - 17:00”,
“17:00 - 17:30”,
“17:00 - 18:00”,
“19:00 - 19:30”,
“19:00 - 20:00”,
“20:00 - 20:30”,
“20:00 - 21:00”,
“21:00 - 21:30”,
“21:00 - 22:00”,
“22:00 - 22:30”,
“22:00 - 23:00”,
“23:00 - 23:30”
]
},
{
“calendarName”: “ROOM 2”,
“freeTimeSlots”: [
“07:00 - 07:30”,
“07:00 - 08:00”,
“08:00 - 08:30”,
“12:00 - 12:30”,
“12:00 - 13:00”,
“13:00 - 13:30”,
“13:00 - 14:00”,
“14:00 - 14:30”,
“14:00 - 15:00”,
“15:00 - 15:30”,
“15:00 - 16:00”,
“16:00 - 16:30”,
“16:00 - 17:00”,
“17:00 - 17:30”,
“17:00 - 18:00”,
“18:00 - 18:30”,
“20:30 - 21:00”,
“20:30 - 21:30”,
“21:30 - 22:00”,
“21:30 - 22:30”,
“22:30 - 23:00”,
“22:30 - 23:30”
]
}
]
}
]
OUTPUT
[
{
“text”: “07:00 - 07:30, 07:00 - 08:00, 08:00 - 08:30, 08:00 - 09:00, 09:00 - 09:30, 09:00 - 10:00, 10:00 - 10:30, 10:00 - 11:00, 11:00 - 11:30, 11:00 - 12:00, 12:00 - 12:30, 12:00 - 13:00, 13:00 - 13:30, 13:00 - 14:00, 14:00 - 14:30, 14:00 - 15:00, 15:00 - 15:30, 15:00 - 16:00, 16:00 - 16:30, 16:00 - 17:00, 17:00 - 17:30, 17:00 - 18:00, 19:00 - 19:30, 19:00 - 20:00, 20:00 - 20:30, 20:00 - 21:00, 21:00 - 21:30, 21:00 - 22:00, 22:00 - 22:30, 22:00 - 23:00, 23:00 - 23:30\n07:00 - 07:30, 07:00 - 08:00, 08:00 - 08:30, 12:00 - 12:30, 12:00 - 13:00, 13:00 - 13:30, 13:00 - 14:00, 14:00 - 14:30, 14:00 - 15:00, 15:00 - 15:30, 15:00 - 16:00, 16:00 - 16:30, 16:00 - 17:00, 17:00 - 17:30, 17:00 - 18:00, 18:00 - 18:30, 20:30 - 21:00, 20:30 - 21:30, 21:30 - 22:00, 21:30 - 22:30, 22:30 - 23:00, 22:30 - 23:30”
}
]