hi there
I’m a little bit confused, i have an Api that returns a list of items with and "id, brand, model, type & status. i want to check every week if the list of the API is still the same as in my database, if not i need to add the items that are missing and update the ones that are changed.
i had in mind too use a backend workflow, then make a workflow for the api and create a new thing only when the unique id is not in the database. then update all the things that are in the database but where the values are changed.
-
how change i iterate through the values of the api and check if its in the database? i thought result of the api ->each items ID does not contain search for items in the database.
-
how can i update the items that are in the database but that are changed?