Sample code for 30+ languages & platforms
SQL Server

SugarCRM: Importing Email Addresses (New Records)

See more SugarCRM Examples

Demonstrates how to import a new contact with email addresses.

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
    DECLARE @iTmp0 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 requires 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

    EXEC sp_OASetProperty @http, 'Accept', 'application/json'

    -- The following JSON is sent in the request body:

    -- {
    --   "first_name": "Rob",
    --   "last_name": "Robertson",
    --   "email": [
    --     {
    --       "email_address": "rob.robertson@sugar.crm",
    --       "primary_address": "1",
    --       "invalid_email": "0",
    --       "opt_out": "0"
    --     },
    --     {
    --       "email_address": "rob@sugar.crm",
    --       "primary_address": "0",
    --       "invalid_email": "0",
    --       "opt_out": "1"
    --     }
    --   ]
    -- }

    -- Use this online tool to generate the code from sample JSON: 
    -- Generate Code to Create JSON

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

    EXEC sp_OAMethod @jsonRequestBody, 'UpdateString', @success OUT, 'first_name', 'Rob'
    EXEC sp_OAMethod @jsonRequestBody, 'UpdateString', @success OUT, 'last_name', 'Robertson'
    EXEC sp_OAMethod @jsonRequestBody, 'UpdateString', @success OUT, 'email[0].email_address', 'rob.robertson@sugar.crm'
    EXEC sp_OAMethod @jsonRequestBody, 'UpdateString', @success OUT, 'email[0].primary_address', '1'
    EXEC sp_OAMethod @jsonRequestBody, 'UpdateString', @success OUT, 'email[0].invalid_email', '0'
    EXEC sp_OAMethod @jsonRequestBody, 'UpdateString', @success OUT, 'email[0].opt_out', '0'
    EXEC sp_OAMethod @jsonRequestBody, 'UpdateString', @success OUT, 'email[1].email_address', 'rob@sugar.crm'
    EXEC sp_OAMethod @jsonRequestBody, 'UpdateString', @success OUT, 'email[1].primary_address', '0'
    EXEC sp_OAMethod @jsonRequestBody, 'UpdateString', @success OUT, 'email[1].invalid_email', '0'
    EXEC sp_OAMethod @jsonRequestBody, 'UpdateString', @success OUT, 'email[1].opt_out', '1'

    DECLARE @url nvarchar(4000)
    SELECT @url = 'http://<site url>/rest/v10/Contacts'

    EXEC sp_OAMethod @http, 'SetRequestHeader', NULL, 'OAuth-Token', 'ACCESS_TOKEN'

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

    EXEC sp_OAMethod @http, 'HttpJson', @success OUT, 'POST', @url, @jsonRequestBody, '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 @jsonRequestBody
        EXEC @hr = sp_OADestroy @resp
        RETURN
      END


    EXEC sp_OAGetProperty @resp, 'StatusCode', @iTmp0 OUT
    PRINT 'Response Status Code: ' + @iTmp0

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

    EXEC sp_OAGetProperty @resp, 'BodyStr', @sTmp0 OUT
    EXEC sp_OAMethod @jsonResponse, 'Load', @success OUT, @sTmp0
    EXEC sp_OASetProperty @jsonResponse, 'EmitCompact', 0
    EXEC sp_OAMethod @jsonResponse, 'Emit', @sTmp0 OUT
    PRINT @sTmp0

    EXEC sp_OAGetProperty @resp, 'StatusCode', @iTmp0 OUT
    IF @iTmp0 >= 300
      BEGIN

        PRINT 'Failed.'
        EXEC @hr = sp_OADestroy @http
        EXEC @hr = sp_OADestroy @jsonRequestBody
        EXEC @hr = sp_OADestroy @resp
        EXEC @hr = sp_OADestroy @jsonResponse
        RETURN
      END

    EXEC @hr = sp_OADestroy @http
    EXEC @hr = sp_OADestroy @jsonRequestBody
    EXEC @hr = sp_OADestroy @resp
    EXEC @hr = sp_OADestroy @jsonResponse


END
GO