Removing data warehouse tables from the Dropbox API console

I am developing an Android application using Dropbox Datastore. I can view tables and records on the Dropbox API console webpage. Is there a way to delete a table from this site? Right now I am executing a special method from my application to clear the table.

+4
source share
1 answer

No, the data warehouse browser is read-only. But on this page, you can execute JavaScript in your browser console to do this. For instance.

datastore_manager.deleteDatastore('default');

+3
source

Source: https://habr.com/ru/post/1542385/


All Articles