@ThinhDinh I have to write 2,5, 20 rows into 5 different tables. Therefore I haven’t considered doing just add row action as the number of rows differ.
My data comes from a json file and I want to populate the 5 different tables (like baseinformation, products, contacts etc). I thought about just getting the data into the tables by query json columns but I need to be able to change the data afterward say that I have product.color=red and I want in the user interface to be able to change it to blue. Then I will need an extra column for the user-inputted value - and the user-inputted value should to a start be red.
This is why I ended up using call API to get the data to the 5 different table. I wonder if there would be another way - and there I could avoid 5 api calls - maybe taking 6-10 seconds in total
@ThinhDinh Thanks for suggestions. At present, I don’t have access to webhooks - but could consider it in the future if it could perform a lot better than call API. It is unclear to me if webhooks are superior to call api when I need to add rows to 5 different tables. Is there any indications of that? Any good video resources to get a feeling of how webhooks work in Glide?