I've just inherited a Python script that uses the Dropbox API to backup data from a third-party source to a folder.
When the employee that used the script went on to another job, his account was deactivated and the app stopped working.
So, I went in, created an app, and am setting up credentials to get the new app up and running again under a new admin user (myself).
The scipt asks for:
a token
a namespace
a userid — starts with dbmid:
From what I've been able to find, the namespace is essentially the folder. It still exists, so I don't actually need to change the value here since I'm not using another folder (at least that's how I think it works).
The token is provided by the "Generated access token" option on the App's Settings page (again, assuming I'm understanding this correctly).
The dbmid is a user-specific token. However, I have no idea where I can retrieve this value.
Any suggestions would be greatly appreciated!