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!!