DropBox ConnectorZappySys DropBox Connector provide read / write capability inside your app (see list below), using these drag and drop , high performance connector you can perform many DropBox operations without any coding. You can use this connector to integrate DropBox data inside apps like SSIS, SQL Server or popular ETL Platforms / BI Tools/ Reporting Apps / Programming languages (i.e. Informatica, Power BI, SSRS, Excel, C#, JAVA, Python) |
Click on your App below to get started with DropBox Integration
Actions supported by DropBox Connector
DropBox Connector support following actions for REST API integration. If some actions are not listed below then you can easily edit Connector file and enhance out of the box functionality.Parameter | Description | ||||||
---|---|---|---|---|---|---|---|
Path |
|
||||||
Recursive |
|
Parameter | Description |
---|---|
SourceFilePath |
|
Parameter | Description |
---|---|
SourcePath |
|
Parameter | Description |
---|---|
TargetFilePath |
|
SourceFilePath |
|
Parameter | Description |
---|---|
Path |
|
Parameter | Description |
---|---|
Path |
|
Parameter | Description |
---|---|
Url |
|
Body |
|
IsMultiPart |
|
Filter |
|
Headers |
|
DropBox Connector Examples (For ODBC PowerPack)
This page offers a collection of SQL examples designed for seamless integration with the ZappySys API ODBC Driver under ODBC Data Source (36/64) or ZappySys Data Gateway, enhancing your ability to connect and interact with Prebuilt Connectors effectively.
Test connection [Read more...]
Tests connection
SELECT *
FROM make_test
List folder #1 [Read more...]
Lists all files and folders within a folder
SELECT *
FROM list_folder
List folder #2 [Read more...]
Lists all files and folders within a folder
SELECT *
FROM list_folder
WITH (Path='/MySubfolder'
,Recursive='true')
Download file [Read more...]
Downloads a file
SELECT *
FROM download_file
WITH (SourceFilePath='/file-I-want-to-download.dat'
,ResponseDataFile='C:\path\I\want\to\save\my\file\to.dat'
)
Download folder as ZIP file [Read more...]
Downloads a folder with all files and folders within it as ZIP file
SELECT *
FROM download_folder
WITH (SourcePath='/folder-I-want-to-download'
,ResponseDataFile='C:\path\I\want\to\save\my\folder\to.zip'
)
Upload a file [Read more...]
Uploads a file
SELECT *
FROM upload_file
WITH (TargetFilePath='/MySubfolder/file-I-want-to-upload-to-dropbox.dat'
,DiskFilePath='C:\file\I\want\to\upload.dat'
)
Delete a file or a folder [Read more...]
Deletes a file or a folder
SELECT *
FROM delete
WITH (Path='/path/to/file/in/dropbox/I/want/to/delete.dat')
Create a folder [Read more...]
Creates a folder
SELECT *
FROM create_folder
WITH (Path='/folder/in/dropbox/I/want/to/create')