One month down in 2025: How are your resolutions coming along? Check out how to get back on track here.
Forum Discussion
Gegham J.
8 years agoNew member | Level 2
Dropbox Webhook for Business
Just install dropbox-psd-python (https://github.com/dropbox/dropbox-sdk-python). Business App integration process was ok. When I add file to my Dropbox Business
{
u'list_folder': {
u'teams': {
u'dbtid:AAB***': [
u'dbmid:AAA******',
u'dbmid:AAC******' ] } },
u'delta': {
u'teams': {
u'dbtid:AAB***': [
u'dbmid:AAA******',
u'dbmid:AAC******' ] } } }
Now I want to call delta to get what exactly change with my dropbox, as I did it before
client = dropbox.dropbox.DropboxTeam(token)
client.delta(cursor)
But there is not delta function call in last version? And I could not find anything substitute of delta How can I do it?
Thanks.
- Greg-DB
Dropbox Staff
[Cross-linking for reference: https://stackoverflow.com/questions/45880174/dropbox-webhook-for-business ]
The 'delta' method was for API v1, which is deprecated and being retired soon. The API v1 functionality was recently removed entirely from the Python SDK.
The equivalent functionality for API v2 that you should use instead is files_list_folder and files_list_folder_continue.
About Dropbox API Support & Feedback
Find help with the Dropbox API from other developers.5,946 PostsLatest Activity: 4 hours ago
If you need more help you can view your support options (expected response time for an email or ticket is 24 hours), or contact us on X or Facebook.
For more info on available support options for your Dropbox plan, see this article.
If you found the answer to your question in this Community thread, please 'like' the post to say thanks and to let us know it was useful!