What is your goal?
I would like to take specific data output from an array aggregation that is split between two collections and consolidate into a single text string. For example, the array aggregator bundle 1 array output includes two collections 1 and 2. Collection 1 contains ‘id: 2708325’ and Collection 2 contains ‘id: 2708326’. I would like to combine both id’s into a single string 2708325,2708326 that I can then input into an HTTP PUT module that requires id’s separated by commas in order to post multiple files. JSON PUT string below is what I need input in the Tech Sign Off attachmentIDs
{
“buildingID”: 589546,
“customFields”: [
{
“customFieldID”: 710519,
“name”: “Tech Sign Off”,
“attachmentIDs”: [2708325,2708326]
},
{
“customFieldID”: 709192,
“name”: “NTE”,
“value”: 200
}
]
}
What is the problem & what have you tried?
Ive tried numerous ways to aggregate, iterate and set or get variables that allow me to input the separate file id’s into a single string. No matter what Ive tried, it only seems to capture the first output collection data and will not see the second id.
Error messages or input/output bundles
Below is the array output bundle from my Array Aggregator. You can see both id’s I need to pull out but cant figure out how
{
"array": [
{
"id": 2708325,
"filename": "Tracking # 1113961 Sign Off-0001.jpg"
},
{
"id": 2708326,
"filename": "Tracking # 1113961 Sign Off-0002.jpg"
}
],
"__IMTAGGLENGTH__": 2
}
]```
### 📸 Screenshots (scenario flow, module settings, errors)


