If statement if text aggregator is in last iteration

Hey @Ingo ,

So for the text aggregator you can take a look at this post I created:

If you like to use the JSON module, there is a “generator” you can use for your structure. This generator allows you to easily get the structure you want. In this case you would have to use something like this:

{
	"inputs": [{
			"id": "1",
			"properties": {
				"company": "Biglytics",
				"email": "bcooper@biglytics.net",
				"firstname": "Bryan",
				"lastname": "Cooper",
				"phone": "(877) 929-0687",
				"website": "biglytics.net"
			}
		},
		{
			"id": "2",
			"properties": {
				"company": "Biglytics",
				"email": "bcooper@biglytics.net",
				"firstname": "Bryan",
				"lastname": "Cooper",
				"phone": "(877) 929-0687",
				"website": "biglytics.net"
			}
		}
	]
}

Instead of the structure you provided above (a few small fixes).

1 Like