SQL Server
SQL Server
Constant Contact - Restore a Deleted Contact
See more Constant Contact Examples
Restores a previously deleted contact with a given id.Chilkat SQL Server Downloads
-- Important: See this note about string length limitations for strings returned by sp_OAMethod calls.
--
CREATE PROCEDURE ChilkatSample
AS
BEGIN
DECLARE @hr int
-- Important: Do not use nvarchar(max). See the warning about using nvarchar(max).
DECLARE @sTmp0 nvarchar(4000)
DECLARE @success int
SELECT @success = 0
-- This example assumes the Chilkat API to have been previously unlocked.
-- See Global Unlock Sample for sample code.
DECLARE @http int
EXEC @hr = sp_OACreate 'Chilkat.Http', @http OUT
IF @hr <> 0
BEGIN
PRINT 'Failed to create ActiveX component'
RETURN
END
-- Implements the following CURL command:
-- curl -X PUT \
-- https://api.cc.email/v3/contacts/{contact_id} \
-- -H 'Accept: application/json' \
-- -H 'Authorization: Bearer {access_token}' \
-- -H 'Cache-Control: no-cache' \
-- -H 'Content-Type: application/json' \
-- -d '{
--
-- "first_name": "John",
-- "last_name": "Byrd",
-- "email_address": {
-- "address": "example@example.com",
-- "permission_to_send": "explicit"
-- },
-- "update_source": "Contact",
-- "list_memberships":["{list_id1}","{list_id2}"]
-- }'
-- Use the following online tool to generate HTTP code from a CURL command
-- Convert a cURL Command to HTTP Source Code
-- Use this online tool to generate code from sample JSON:
-- Generate Code to Create JSON
-- The following JSON is sent in the request body.
-- {
-- "first_name": "John",
-- "last_name": "Byrd",
-- "email_address": {
-- "address": "example@example.com",
-- "permission_to_send": "explicit"
-- },
-- "update_source": "Contact",
-- "list_memberships": [
-- "{list_id1}",
-- "{list_id2}"
-- ]
-- }
DECLARE @json int
EXEC @hr = sp_OACreate 'Chilkat.JsonObject', @json OUT
EXEC sp_OAMethod @json, 'UpdateString', @success OUT, 'first_name', 'John'
EXEC sp_OAMethod @json, 'UpdateString', @success OUT, 'last_name', 'Byrd'
EXEC sp_OAMethod @json, 'UpdateString', @success OUT, 'email_address.address', 'example@example.com'
EXEC sp_OAMethod @json, 'UpdateString', @success OUT, 'email_address.permission_to_send', 'explicit'
EXEC sp_OAMethod @json, 'UpdateString', @success OUT, 'update_source', 'Contact'
EXEC sp_OAMethod @json, 'UpdateString', @success OUT, 'list_memberships[0]', '{list_id1}'
EXEC sp_OAMethod @json, 'UpdateString', @success OUT, 'list_memberships[1]', '{list_id2}'
-- Adds the "Authorization: Bearer ACCESS_TOKEN" header.
EXEC sp_OASetProperty @http, 'AuthToken', 'ACCESS_TOKEN'
EXEC sp_OAMethod @http, 'SetRequestHeader', NULL, 'Accept', 'application/json'
EXEC sp_OAMethod @http, 'SetRequestHeader', NULL, 'Content-Type', 'application/json'
EXEC sp_OAMethod @http, 'SetRequestHeader', NULL, 'Cache-Control', 'no-cache'
DECLARE @sbRequestBody int
EXEC @hr = sp_OACreate 'Chilkat.StringBuilder', @sbRequestBody OUT
EXEC sp_OAMethod @json, 'EmitSb', @success OUT, @sbRequestBody
DECLARE @resp int
EXEC @hr = sp_OACreate 'Chilkat.HttpResponse', @resp OUT
EXEC sp_OAMethod @http, 'HttpSb', @success OUT, 'PUT', 'https://api.cc.email/v3/contacts/{contact_id}', @sbRequestBody, 'utf-8', 'application/json', @resp
IF @success = 0
BEGIN
EXEC sp_OAGetProperty @http, 'LastErrorText', @sTmp0 OUT
PRINT @sTmp0
EXEC @hr = sp_OADestroy @http
EXEC @hr = sp_OADestroy @json
EXEC @hr = sp_OADestroy @sbRequestBody
EXEC @hr = sp_OADestroy @resp
RETURN
END
DECLARE @sbResponseBody int
EXEC @hr = sp_OACreate 'Chilkat.StringBuilder', @sbResponseBody OUT
EXEC sp_OAMethod @resp, 'GetBodySb', @success OUT, @sbResponseBody
DECLARE @jResp int
EXEC @hr = sp_OACreate 'Chilkat.JsonObject', @jResp OUT
EXEC sp_OAMethod @jResp, 'LoadSb', @success OUT, @sbResponseBody
EXEC sp_OASetProperty @jResp, 'EmitCompact', 0
PRINT 'Response Body:'
EXEC sp_OAMethod @jResp, 'Emit', @sTmp0 OUT
PRINT @sTmp0
DECLARE @respStatusCode int
EXEC sp_OAGetProperty @resp, 'StatusCode', @respStatusCode OUT
PRINT 'Response Status Code = ' + @respStatusCode
IF @respStatusCode >= 400
BEGIN
PRINT 'Response Header:'
EXEC sp_OAGetProperty @resp, 'Header', @sTmp0 OUT
PRINT @sTmp0
PRINT 'Failed.'
EXEC @hr = sp_OADestroy @http
EXEC @hr = sp_OADestroy @json
EXEC @hr = sp_OADestroy @sbRequestBody
EXEC @hr = sp_OADestroy @resp
EXEC @hr = sp_OADestroy @sbResponseBody
EXEC @hr = sp_OADestroy @jResp
RETURN
END
-- Sample JSON response:
-- (Sample code for parsing the JSON response is shown below)
-- {
-- "contact_id": "{contact_id}",
-- "first_name": "John",
-- "last_name": "Byrd",
-- "update_source": "Contact",
-- "create_source": "Account",
-- "created_at": "2013-04-01T15:07:07-04:00",
-- "updated_at": "2018-02-20T16:47:40-05:00",
-- "email_address": {
-- "address": "example@example.com",
-- "permission_to_send": "implicit",
-- "created_at": "2013-04-01T15:07:07-04:00",
-- "updated_at": "2018-02-20T16:47:40-05:00",
-- "opt_in_source": "Account",
-- "opt_in_date": "2015-03-17T11:13:28-04:00",
-- "confirm_status": "off"
-- }
-- }
-- Sample code for parsing the JSON response...
-- Use the following online tool to generate parsing code from sample JSON:
-- Generate Parsing Code from JSON
DECLARE @contact_id nvarchar(4000)
EXEC sp_OAMethod @jResp, 'StringOf', @contact_id OUT, 'contact_id'
DECLARE @first_name nvarchar(4000)
EXEC sp_OAMethod @jResp, 'StringOf', @first_name OUT, 'first_name'
DECLARE @last_name nvarchar(4000)
EXEC sp_OAMethod @jResp, 'StringOf', @last_name OUT, 'last_name'
DECLARE @update_source nvarchar(4000)
EXEC sp_OAMethod @jResp, 'StringOf', @update_source OUT, 'update_source'
DECLARE @create_source nvarchar(4000)
EXEC sp_OAMethod @jResp, 'StringOf', @create_source OUT, 'create_source'
DECLARE @created_at nvarchar(4000)
EXEC sp_OAMethod @jResp, 'StringOf', @created_at OUT, 'created_at'
DECLARE @updated_at nvarchar(4000)
EXEC sp_OAMethod @jResp, 'StringOf', @updated_at OUT, 'updated_at'
DECLARE @email_addressAddress nvarchar(4000)
EXEC sp_OAMethod @jResp, 'StringOf', @email_addressAddress OUT, 'email_address.address'
DECLARE @email_addressPermission_to_send nvarchar(4000)
EXEC sp_OAMethod @jResp, 'StringOf', @email_addressPermission_to_send OUT, 'email_address.permission_to_send'
DECLARE @email_addressCreated_at nvarchar(4000)
EXEC sp_OAMethod @jResp, 'StringOf', @email_addressCreated_at OUT, 'email_address.created_at'
DECLARE @email_addressUpdated_at nvarchar(4000)
EXEC sp_OAMethod @jResp, 'StringOf', @email_addressUpdated_at OUT, 'email_address.updated_at'
DECLARE @email_addressOpt_in_source nvarchar(4000)
EXEC sp_OAMethod @jResp, 'StringOf', @email_addressOpt_in_source OUT, 'email_address.opt_in_source'
DECLARE @email_addressOpt_in_date nvarchar(4000)
EXEC sp_OAMethod @jResp, 'StringOf', @email_addressOpt_in_date OUT, 'email_address.opt_in_date'
DECLARE @email_addressConfirm_status nvarchar(4000)
EXEC sp_OAMethod @jResp, 'StringOf', @email_addressConfirm_status OUT, 'email_address.confirm_status'
EXEC @hr = sp_OADestroy @http
EXEC @hr = sp_OADestroy @json
EXEC @hr = sp_OADestroy @sbRequestBody
EXEC @hr = sp_OADestroy @resp
EXEC @hr = sp_OADestroy @sbResponseBody
EXEC @hr = sp_OADestroy @jResp
END
GO