Property Group - Delete
Remove Dropbox Property Group 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_Property_Group_Delete( @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, 'file_properties', 'properties', 'remove' 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 |
DECLARE @Response nvarchar(MAX) DECLARE @StatusCode int DECLARE @StatusDescription nvarchar(MAX) DECLARE @Body varchar(MAX) SET @Body = '{ "path": "/SampleFile.doc", "property_template_ids": [ "ptid:X-uB6WBkIxAAAAAAAAAAIw" ] }' EXEC usp_DropBox_v2_Property_Group_Delete @Profile = 'My Dropbox', @Body = @Body, @Response= @Response OUTPUT, @StatusCode = @StatusCode OUTPUT, @StatusDescription = @StatusDescription OUTPUT SELECT @StatusCode AS StatusCode, @StatusDescription AS StatusDescription |
1 2 3 4 5 |
StatusCode StatusDescription ----------- ------------------- 200 OK |
- 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.