Hello, I am new to Make and am struggling to correctly format a JSON array.
I have a scenario that parses email text to find all the URLs and uses an Array Aggregator to create an array of objects. It then uses a Create JSON module to put the URL values only into a JSON array, however it only seems to include the first item of the array.
Array aggregator input:
[
{
"__IMTMATCH__": "https://www.example.com"
},
{
"__IMTMATCH__": "https://www.example2.com"
}
]
Array aggregator output:
[
{
"array": [
{
"__IMTMATCH__": "https://www.example.com"
},
{
"__IMTMATCH__": "https://www.example2.com"
}
],
"__IMTAGGLENGTH__": 2
}
]
Relevant field in the JSON data structure:

JSON builder module input:
[
{
"body": "Some email text\r\n\r\nhttps://www.example.com\r\nhttps://www.example2.com\r\n",
"links": [
"https://www.example.com"
],
"sender": "email@email.com",
"subject": "Testing",
"recipient": “email@email.com"
}
]
Any ideas on how to convert the Array Aggregator array of objects to a complete JSON array of text values would be much appreciated.
