Custom forms & dropbox upload?

Hi,
Is it possible to create a custom form using Wix Code and integrate the Get Files to Dropbox app in the form (that connects to my database) using the #dropboxUploader1? I don’t want to take up storage space on my Wix media account with the files so just a url in my database isfine. The goal is to allow the user completing the form to fill out name, address, ect, upload multiple files, hit submit in the same workflow.
Thanks!
Melissa

1 Like

I am looking for the same …

Hi,

the form submission with wix code does not upload the media file to the db collection, the collection only holds a url reference to the media file, which is previously uploaded to a web storage, by default to wix storage, i’d recommend you start off with that until you see it takes substantial quota of your storage.
if you want to use other uploader, create it within an html element (iframe), upload it to dropbox (i am not familiar with their js uploader), and hold the url reference to that media file to be put in the form submittion and hold in your db collection

Shlomi

1 Like

Hi Shlomi,
I’m looking for exact what you said. I’m using Get Files to Dropbox app, after upload file successful i want to save the file url to my db collection. But i don’t know how to get the file url after upload. You said about iFrame, can you help me?