I have console application for syncing products, orders data for different clients. I am using API's to pull and push data from 1 server to another server with task scheduler. But now I m facing a problem since number of clients are increasing. So while searching over Google I found topic about Azure functions. I went through some basic tutorials and understood how it works, but those are very simple applications.
In my current application I have 3 schedule job 1) Push partial product data updated recently (runs in every 15 mins) 2) Push orders data and acknowledge back (runs in every 15 mins) 3) Push all products data ( runs in every 6hrs)
from this link I got idea of Durable function and solution to my problem Stackoverflow Question but how can I store API details for different clients & how to start processing each of them ?
Thanks in advance