Send to API (PUT) only includes first row

Dear Parabola community

This is my flow:

Everything works really well, except for one issue:
When I send data via the API, only the first row in the results is being included.

My request body looks like this:

[
	 {
	   "boosted": "{boosted}",
	   "breed": "{breed}",
	   "category": "{category}",
	   "created_date": "{created_date}",
	   "description": "{description}",
	   "image_url": "{image_url}",
	   "item_id": "{item_id}",
	   "price": "{price}", 
	   "title": "{title}",
	   "url": "{url}"
	 }
]

Data is sending to APi correctly, but as said, only one row is included. How would I go about to make sure that every row gets appended after each other, such as:

[
	 {
	   Data of row 1
	 },
         {
	   Data of row 2
	 },
         {
	   ...etc
	 },
]

Any help would be greatly appreciated!!

Hi @Eyass_Shakrah- Happy to take a look and help you get this step working! Could you please reach out to us at help@parabola.io and send us the link to the Flow where this is happening so we can take a closer look?