Files / Folders – Batch Copy
Copy Dropbox files/folders using SQL Server
- See SQLHTTP easy setup for Dropbox
- See API Call documentation for parameter values and other information
- Create the stored procedure documented below
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 |
CREATE PROCEDURE usp_DropBox_v2_Batch_Copy( @Profile nvarchar(100), @Body varchar(MAX), @Response nvarchar(MAX) OUTPUT, @StatusCode int OUTPUT, @StatusDescription nvarchar(MAX) OUTPUT) AS DECLARE @URL nvarchar(MAX) DECLARE @HTTPSessionID uniqueidentifier SET @URL = 'https://api.dropbox.com/2' EXEC SQLHTTP.net.UrlBuilder @URL OUTPUT, @Profile, 'files', 'copy_batch' EXEC SQLHTTP.net.HTTPSession @HTTPSessionID OUTPUT EXEC usp_Dropbox_v2_Auth_Header @Profile, @HTTPSessionID EXEC SQLHTTP.net.HTTPRequest @HttpSessionID, @URL = @URL, @Method = 'POST', @Body = @Body, @ContentType = 'application/json', @StatusCode = @StatusCode OUTPUT, @StatusDescription = @StatusDescription OUTPUT, @Response = @Response OUTPUT GO |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 |
DECLARE @Response nvarchar(MAX) DECLARE @StatusCode int DECLARE @StatusDescription nvarchar(MAX) DECLARE @Body varchar(MAX) SET @Body = '{ "entries": [ { "from_path": "/File Requests/Homework/math/Prime_Numbers.txt", "to_path": "/File Requests/Homework/algebra/Prime_Numbers.txt" }, { "from_path": "/File Requests/Homework/math/Composite_Numbers.txt", "to_path": "/File Requests/Homework/algebra/Composite_Numbers.txt" } ], "allow_shared_folder": false, "autorename": false, "allow_ownership_transfer": false }' EXEC usp_DropBox_v2_Batch_Copy @Profile = 'My Dropbox', @Body = @Body, @Response= @Response OUTPUT, @StatusCode = @StatusCode OUTPUT, @StatusDescription = @StatusDescription OUTPUT IF @StatusCode >= 400 EXEC SQLHTTP.net.RaiseHttpError @StatusCode, @StatusDescription, @Response ELSE BEGIN DECLARE @X xml SET @X = SQLHTTP.net.Json_To_Xml(@Response, '0') --The XPath syntax below was easily generated by executing the following commands: --EXEC SQLHTTP.net.XQueryHelper @X --and then executing: --EXEC SQLHTTP.net.XQueryHelper @X, 'JsonObject' SELECT T.C.value(N'@_x002E_tag', N'nvarchar(MAX)') AS [.tag] ,T.C.value(N'@async_job_id', N'nvarchar(MAX)') AS [async_job_id] FROM @X.nodes(N'JsonObject') T(C) END |
1 2 3 4 5 |
.tag async_job_id ------------- ----------------------------------------------------------------------------- async_job_id dbjid:AABk60aZUUzWmgcdMcCVGdoAfNPgbzD8bGOYPf7xi1kEqBq1LhO4j7k2x3vWugCMan... |
- Copy Reference – Fetch
- Copy Reference – Save
- File – Unshare
- File / Folder – Copy
- File / Folder – Delete
- File / Folder – Move
- File / Folder – Restore
- File / Folder – Search
- File / Folder Metadata – Fetch
- File Member – Add
- File Member – Delete
- File Members – Fetch
- File Members Batch – Fetch
- File Membership – Relinquish
- File Request – Create
- File Request – Fetch
- File Request – Update
- File Revisions – Fetch
- File URL – Save
- Files – Fetch
- Files / Folders – Batch Copy Status
- Files / Folders – Batch Delete
- Files / Folders – Batch Delete Status
- Files / Folders – Batch Copy
- Files / Folders – Batch Move
- Files / Folders – Batch Move Status
- Folder – Create
- Folder – Share
- Folder – Transfer
- Folder – Unshare
- Folder Member – Add
- Folder Member – Delete
- Folder Members – Fetch
- Job Status – Check
- Mountable Folders – Fetch
- Property Group – Create
- Property Group – Delete
- Property Group – Overwrite
- Property Group – Search
- Property Group – Update
- Received Files – Fetch
- Remove Member Job Status – Check
- Save URL – Check Job Status
- Shared File Metadata – Fetch
- Shared Files Metadata – Fetch
- Shared Folder – Mount
- Shared Folder – Unmount
- Shared Folder Metadata – Fetch
- Shared Folders – Fetch
- Shared Link – Create
- Shared Link – Revoke
- Shared Link – Update
- Shared Link Metadata – Fetch
- Shared Links – Fetch
- Template – Create
- Template – Fetch
- Template – Update
- Template – Delete
- Temporary Link – Fetch
IMPORTANT DISCLAIMER
CODE/SQL ON THESE PAGES ARE PROVIDED AS-IS AND ARE AVAILABLE FOR ILLUSTRATIVE PURPOSES ONLY.
USERS ARE REQUIRED TO ABIDE BY THE TERMS AND CONDITIONS FOR USING REFERENCED THIRD PARTY WEBSITES AND/OR APIs FROM THEIR RESPECTIVE WEBSITES. WE DO NOT CONDONE ANY VIOLATION OF THIRD PARTY WEBSITES AND/OR APIs TERMS AND CONDITIONS USING OUR SOFTWARE.
USERS SHALL BE SOLELY RESPONSIBLE AND BE SOLELY LIABLE FOR VIOLATION OF ANY RULES SPECIFIED BY THIRD PARTIES FOR USING THEIR WEBSITES AND/OR APIs, OR INFRINGEMENT OF RIGHTS OF SUCH THIRD PARTIES.