Sample code for 30+ languages & platforms
SQL Server

Constant Contact - Add Contacts to List

See more Constant Contact Examples

Demonstrates a call to add five existing contacts to two lists.

Chilkat SQL Server Downloads

SQL Server
-- 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 POST \
    --   https://api.cc.email/v3/activities/add_list_memberships \
    --   -H 'Accept: application/json' \
    --   -H 'Authorization: Bearer {access_token}' \
    --   -H 'cache-control: no-cache' \
    --   -H 'content-type: application/json' \
    --   -d '{
    --   "source": {
    --     "contact_ids": [
    --       "{contact_id1}",
    --       "{contact_id2}",
    --       "{contact_id3}",
    --       "{contact_id4}",
    --       "{contact_id5}",
    --       "{contact_id6}"
    --     ]
    --   },
    --   "list_ids": [
    --     "{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.

    -- {
    --   "source": {
    --     "contact_ids": [
    --       "{contact_id1}",
    --       "{contact_id2}",
    --       "{contact_id3}",
    --       "{contact_id4}",
    --       "{contact_id5}",
    --       "{contact_id6}"
    --     ]
    --   },
    --   "list_ids": [
    --     "{list_id1}",
    --     "{list_id2}"
    --   ]
    -- }

    DECLARE @json int
    EXEC @hr = sp_OACreate 'Chilkat.JsonObject', @json OUT

    EXEC sp_OAMethod @json, 'UpdateString', @success OUT, 'source.contact_ids[0]', '{contact_id1}'
    EXEC sp_OAMethod @json, 'UpdateString', @success OUT, 'source.contact_ids[1]', '{contact_id2}'
    EXEC sp_OAMethod @json, 'UpdateString', @success OUT, 'source.contact_ids[2]', '{contact_id3}'
    EXEC sp_OAMethod @json, 'UpdateString', @success OUT, 'source.contact_ids[3]', '{contact_id4}'
    EXEC sp_OAMethod @json, 'UpdateString', @success OUT, 'source.contact_ids[4]', '{contact_id5}'
    EXEC sp_OAMethod @json, 'UpdateString', @success OUT, 'source.contact_ids[5]', '{contact_id6}'
    EXEC sp_OAMethod @json, 'UpdateString', @success OUT, 'list_ids[0]', '{list_id1}'
    EXEC sp_OAMethod @json, 'UpdateString', @success OUT, 'list_ids[1]', '{list_id2}'

    -- Adds the "Authorization: Bearer ACCESS_TOKEN" header.
    EXEC sp_OASetProperty @http, 'AuthToken', 'ACCESS_TOKEN'
    EXEC sp_OAMethod @http, 'SetRequestHeader', NULL, 'content-type', 'application/json'
    EXEC sp_OAMethod @http, 'SetRequestHeader', NULL, 'Accept', 'application/json'
    EXEC sp_OAMethod @http, 'SetRequestHeader', NULL, 'cache-control', 'no-cache'

    DECLARE @resp int
    EXEC @hr = sp_OACreate 'Chilkat.HttpResponse', @resp OUT

    EXEC sp_OAMethod @http, 'HttpJson', @success OUT, 'POST', 'https://api.cc.email/v3/activities/add_list_memberships', @json, '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 @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 @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)

    -- {
    --   "activity_id": "activity_id",
    --   "state": "initialized",
    --   "created_at": "2018-02-28T13:49:41-05:00",
    --   "updated_at": "2018-02-28T13:49:41-05:00",
    --   "percent_done": 1,
    --   "activity_errors": [
    --   ],
    --   "status": {
    --     "list_count": 2
    --   },
    --   "_links": {
    --     "self": {
    --       "href": "/v3/activities/activity_id"
    --     }
    --   }
    -- }

    -- 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 @activity_id nvarchar(4000)
    EXEC sp_OAMethod @jResp, 'StringOf', @activity_id OUT, 'activity_id'
    DECLARE @state nvarchar(4000)
    EXEC sp_OAMethod @jResp, 'StringOf', @state OUT, 'state'
    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 @percent_done int
    EXEC sp_OAMethod @jResp, 'IntOf', @percent_done OUT, 'percent_done'
    DECLARE @statusList_count int
    EXEC sp_OAMethod @jResp, 'IntOf', @statusList_count OUT, 'status.list_count'
    DECLARE @v_linksSelfHref nvarchar(4000)
    EXEC sp_OAMethod @jResp, 'StringOf', @v_linksSelfHref OUT, '_links.self.href'
    DECLARE @i int
    SELECT @i = 0
    DECLARE @count_i int
    EXEC sp_OAMethod @jResp, 'SizeOfArray', @count_i OUT, 'activity_errors'
    WHILE @i < @count_i
      BEGIN
        EXEC sp_OASetProperty @jResp, 'I', @i
        DECLARE @errMsg nvarchar(4000)
        EXEC sp_OAMethod @jResp, 'StringOf', @errMsg OUT, 'activity_errors[i]'
        SELECT @i = @i + 1
      END

    EXEC @hr = sp_OADestroy @http
    EXEC @hr = sp_OADestroy @json
    EXEC @hr = sp_OADestroy @resp
    EXEC @hr = sp_OADestroy @sbResponseBody
    EXEC @hr = sp_OADestroy @jResp


END
GO