Hello
So basically I am working on automation. However, I cannot figure out how to use the "cursor" correctly.
My flow is simple.
1. A webhook is triggered by new files added to Dropbox.
2. Use POST /2/files/list_folder to list all files from a specific folder and obtain a cursor.
3. Use POST /2/files/list_folder/continue with the cursor obtained in step 2. It will not return any results unless we continue with a cursor obtained before new files were added.
4. Upload those latest added files to somewhere else.
But how can we obtain the correct cursor (previous state) for step 3 to retrieve the latest added files for step 4?
Thanks