I’m trying to build a data pipeline to extract data on Zoom and store it in our database. I’m planning to schedule to extract users, meetings, participants data everyday.
Which endpoint can I use to call a GET request that allows me to get the data that was created or modified the day before?
For meetings, most of the endpoints that I found requires user ID. It allows query with from= and to=, but would be better if there is an endpoint that doesn’t require user ID.
For user, I couldn’t find an endpoint that allows to query info only accounts that have been updated or created in certain timeframe.
I’m fairly new to ETL, any advice is much appreciated.
I ran a test, the result includes user created_date, I can insert new users to the database. What would you recommend on how to update the current users if there anything changed on their profiles?
Checking if there is any changes in each account might take a very long time.