2024 Apr 01 11:45 PM - edited 2024 Apr 02 12:41 AM
Dear Experts:
i have this API structure:
i want to send 5 or more rows on a single POST. is this posible in SAP Build Apps? (AKA AppGyver)
if i can i think i need to use a formula in the "Create Record" flow function? or just need to map the values of the my "List of Objects" that store information of my multiple rows?
Or i need to do a single row create until my object gets empty? (using flow functions)
2024 Apr 03 4:05 PM - edited 2024 Apr 03 4:07 PM
Solved this with the IF Flow function sending 1 line and deleting that line from my List of Object and checking if the list of object is empty and sending another line until the object gets empty.
I think this is temporary until i get more experience or some expert tip with a smarter way to do this.
2024 Apr 03 8:07 PM
Hey Josue,
In fact, there are several ways to achieve this :
You can decide to loop five time processing one record at a time for example. You can also use the HTTP Resquest component available in the marketplace to process a single ad hoc call containing but one JSON object of 5 records. Of course, you must ensure that the backend that you are sending the request to is able to process such a call.
All the best