Hi, do you want to list files?
If so, you should create full-access dropbox application at dropbox developers site and get/generate access token there.
-> https://www.dropbox.com/developers
In Retool, you should select RESTQuery(restapi) as query resource.
Paramaters are like follows: (ex. listing files in particular path)
- Action type: POST https://api.dropboxapi.com/2/files/list_folder
- Headers:(Header/Value)
- Authorization / Bearer xxxxxxxxxxxxx(access token)
- Content-Type / application/json
- Body(json)
- path / /path/to/somedirectory/
- recursive / false
(c.f. www.dropbox.com/developers/documentation/http/documentation#files-list_folder)
Finally, you should assign some action to running this query.
If you try some other functions on Dropbox, see a document.
thx.