SObject Record - Delete
Delete a Salesforce SObject record using SQL Server
- See SQLHTTP easy setup for Salesforce
- 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 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 |
CREATE PROCEDURE usp_Salesforce_SObject_Record_Delete( @Profile nvarchar(100), @APIVersion varchar(6), @Record varchar(20), @RecordID varchar(50), @Response nvarchar(MAX) OUTPUT, @StatusCode int OUTPUT, @StatusDescription nvarchar(MAX) OUTPUT) AS IF @APIVersion NOT LIKE 'v[0-9]%' BEGIN RAISERROR('Invalid API Version. Example: v20.0', 16, 1) RETURN END IF ISNUMERIC(SUBSTRING(@APIVersion, 2, LEN(@APIVersion))) = 0 BEGIN RAISERROR('Invalid API Version. Example: v20.0', 16, 1) RETURN END DECLARE @URL nvarchar(MAX) DECLARE @HTTPSessionID uniqueidentifier SET @URL = SQLHTTP.net.AuthParam(@Profile, 'InstanceURL') EXEC SQLHTTP.net.UrlBuilder @URL OUTPUT, @Profile, 'services','data', @APIVersion, 'sobjects', @Record, @RecordID EXEC SQLHTTP.net.HTTPSession @HTTPSessionID OUTPUT EXEC usp_Salesforce_Auth_Header @Profile, @HTTPSessionID EXEC SQLHTTP.net.HTTPRequest @HttpSessionID, @URL = @URL, @Method = 'DELETE', @ContentType = 'application/json', @Accept = '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 @Profile nvarchar(100) SET @Profile = 'My Salesforce' --Salesforce Bearer Token is valid for only a few hours EXEC usp_Salesforce_Auth_Refresh @Profile EXEC usp_Salesforce_SObject_Record_Delete @Profile = @Profile, @APIVersion = 'v40.0', @Record = 'Account', @RecordID = '0010Y00000YpNFGQA3', @Response = @Response OUTPUT, @StatusCode = @StatusCode OUTPUT, @StatusDescription = @StatusDescription OUTPUT SELECT @StatusCode AS StatusCode, @StatusDescription AS StatusDescription |
1 2 3 4 5 |
StatusCode StatusDescription ----------- ------------------- 204 No Content |
- API Resources – Fetch
- API Versions – Fetch
- Event Monitoring – Fetch
- EventLogFile – Query
- Field Values from an External Object – Fetch
- Objects – Fetch
- Organization Limits – Fetch
- Parameterized Search for a String – Fetch
- Query Performance – Fetch
- Search Result Layout – Fetch
- SObject Fields and Metadata – Fetch
- SObject Metadata – Fetch
- SObject Record – Create
- SObject Record – Delete
- SObject Record – Update
- SObject Record Field Values – Fetch
- User Password – Set
- User Password Expiration- 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.