DropBox Connector
Documentation
Version: 1
Documentation

EndPoint Delete


Parameters

Parameter Label Required Options Description
Path Path NO

Output Columns

Label Data Type (SSIS) Data Type (SQL) Length Raw Description
Id DT_WSTR nvarchar(4000) 4000 False
Name DT_WSTR nvarchar(4000) 4000 False
PathLower DT_WSTR nvarchar(4000) 4000 False
PathDisplay DT_WSTR nvarchar(4000) 4000 False
ClientModified DT_DBTIMESTAMP datetime False
ServerModified DT_DBTIMESTAMP datetime False
Revision DT_WSTR nvarchar(4000) 4000 False
Size DT_I8 bigint False
IsDownloadable DT_BOOL bit False
ContentHash DT_WSTR nvarchar(4000) 4000 False

Input Columns

Label Data Type (SSIS) Data Type (SQL) Length Raw Description
There are no Static columns defined for this endpoint. This endpoint detects columns dynamically at runtime.

Examples

SSIS

Use DropBox Connector in API Source component to read data or in API Destination component to read/write data:

Delete using API Source

DropBox
Delete
SSIS API Source - Read from table or endpoint

Delete using API Destination

DropBox
Delete
SSIS API Destination - Access table or endpoint

ODBC application

Use these SQL queries in your ODBC application data source:

Delete a file or a folder

Deletes a file or a folder

SELECT *
  FROM delete
  WITH (Path='/path/to/file/in/dropbox/I/want/to/delete.dat')

SQL Server

Use these SQL queries in SQL Server after you create a data source in Data Gateway:

Delete a file or a folder

Deletes a file or a folder

DECLARE @MyQuery NVARCHAR(MAX) = 'SELECT *
  FROM delete
  WITH (Path=''/path/to/file/in/dropbox/I/want/to/delete.dat'')';

EXEC (@MyQuery) AT [LINKED_SERVER_TO_DROPBOX_IN_DATA_GATEWAY];