Hi Stoyan
The database I use is FMX and their API documentation requires I add multiple file ID’s separated by commas in order to PUT them to an existing work order already built in the platform.
```
{
"customFieldID": 709088,
"name": "Attachments/Photos",
"attachmentIDs": [fileID1,fileID2,fileID3,fileID4,fileID5],
"isHidden": false
}
The issue is I dont have the FMX file ID’s until I POST them from the email image attachments. So I would like 1. a way to filter if the email attached images already exist in an FMX HTTP GET module and then 2. POST them into FMX if they do not already exist. 3. I need to then extract the newly created FMX file ID’s and format them fileID1,fileID2,fileID3 etc that will then be selectable in the HTTP PUT JSON code above. You helped me out earlier this week with a text aggregation issue that I needed to do something similar with multiple fileID’s
However I tried to replicate this but I could not get it to work, Im assuming because of this scenarios particular pattern and placement of iterators and aggregators.
Thanks