Sample code for 30+ languages & platforms
SQL Server

SMSAPI - Create a Contact

See more SMSAPI Examples

Create a Contact

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.smsapi.com/contacts -H "Authorization: Bearer token_api_oauth" \
    -- -d "phone_number=48500000000&email=bok@smsapi.com&first_name=Name&last_name=Last_name&gender=gender&description=description&city=city&groups=default"

    -- Use the following online tool to generate HTTP code from a CURL command
    -- Convert a cURL Command to HTTP Source Code

    DECLARE @req int
    EXEC @hr = sp_OACreate 'Chilkat.HttpRequest', @req OUT

    EXEC sp_OASetProperty @req, 'HttpVerb', 'POST'
    EXEC sp_OASetProperty @req, 'Path', '/contacts'
    EXEC sp_OASetProperty @req, 'ContentType', 'application/x-www-form-urlencoded'
    EXEC sp_OAMethod @req, 'AddParam', NULL, 'phone_number', '48500000000'
    EXEC sp_OAMethod @req, 'AddParam', NULL, 'email', 'bok@smsapi.com'
    EXEC sp_OAMethod @req, 'AddParam', NULL, 'first_name', 'Name'
    EXEC sp_OAMethod @req, 'AddParam', NULL, 'last_name', 'Last_name'
    EXEC sp_OAMethod @req, 'AddParam', NULL, 'gender', 'gender'
    EXEC sp_OAMethod @req, 'AddParam', NULL, 'description', 'description'
    EXEC sp_OAMethod @req, 'AddParam', NULL, 'city', 'city'
    EXEC sp_OAMethod @req, 'AddParam', NULL, 'groups', 'default'

    EXEC sp_OAMethod @req, 'AddHeader', NULL, 'Authorization', 'Bearer token_api_oauth'

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

    EXEC sp_OAMethod @http, 'HttpReq', @success OUT, 'https://api.smsapi.com/contacts', @req, @resp
    IF @success = 0
      BEGIN
        EXEC sp_OAGetProperty @http, 'LastErrorText', @sTmp0 OUT
        PRINT @sTmp0
        EXEC @hr = sp_OADestroy @http
        EXEC @hr = sp_OADestroy @req
        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 @req
        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)

    -- {
    --   "id": "5b802315a788494a04690d1d",
    --   "first_name": "string",
    --   "last_name": "string",
    --   "phone_number": "48500000000",
    --   "email": "bok@smsapi.com",
    --   "gender": "gender",
    --   "city": "city",
    --   "date_created": "2018-08-24T17:24:05+02:00",
    --   "date_updated": "2018-08-24T17:24:05+02:00",
    --   "description": "description",
    --   "groups": [
    --     {
    --       "id": "59a3ca1fa78849062837cd0c",
    --       "name": "default",
    --       "date_created": "2017-08-28T09:45:35+02:00",
    --       "date_updated": "2017-08-28T09:45:35+02:00",
    --       "description": "",
    --       "created_by": "username",
    --       "idx": null,
    --       "contact_expire_after": null,
    --       "contacts_count": null
    --     }
    --   ]
    -- }

    -- 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 @date_created int
    EXEC @hr = sp_OACreate 'Chilkat.DtObj', @date_created OUT

    DECLARE @date_updated int
    EXEC @hr = sp_OACreate 'Chilkat.DtObj', @date_updated OUT

    DECLARE @name nvarchar(4000)

    DECLARE @created_by nvarchar(4000)

    DECLARE @idx nvarchar(4000)

    DECLARE @contact_expire_after nvarchar(4000)

    DECLARE @contacts_count nvarchar(4000)

    DECLARE @id nvarchar(4000)
    EXEC sp_OAMethod @jResp, 'StringOf', @id OUT, '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 @phone_number nvarchar(4000)
    EXEC sp_OAMethod @jResp, 'StringOf', @phone_number OUT, 'phone_number'
    DECLARE @email nvarchar(4000)
    EXEC sp_OAMethod @jResp, 'StringOf', @email OUT, 'email'
    DECLARE @gender nvarchar(4000)
    EXEC sp_OAMethod @jResp, 'StringOf', @gender OUT, 'gender'
    DECLARE @city nvarchar(4000)
    EXEC sp_OAMethod @jResp, 'StringOf', @city OUT, 'city'
    EXEC sp_OAMethod @jResp, 'DtOf', @success OUT, 'date_created', 0, @date_created
    EXEC sp_OAMethod @jResp, 'DtOf', @success OUT, 'date_updated', 0, @date_updated
    DECLARE @description nvarchar(4000)
    EXEC sp_OAMethod @jResp, 'StringOf', @description OUT, 'description'
    DECLARE @i int
    SELECT @i = 0
    DECLARE @count_i int
    EXEC sp_OAMethod @jResp, 'SizeOfArray', @count_i OUT, 'groups'
    WHILE @i < @count_i
      BEGIN
        EXEC sp_OASetProperty @jResp, 'I', @i
        EXEC sp_OAMethod @jResp, 'StringOf', @id OUT, 'groups[i].id'
        EXEC sp_OAMethod @jResp, 'StringOf', @name OUT, 'groups[i].name'
        EXEC sp_OAMethod @jResp, 'DtOf', @success OUT, 'groups[i].date_created', 0, @date_created
        EXEC sp_OAMethod @jResp, 'DtOf', @success OUT, 'groups[i].date_updated', 0, @date_updated
        EXEC sp_OAMethod @jResp, 'StringOf', @description OUT, 'groups[i].description'
        EXEC sp_OAMethod @jResp, 'StringOf', @created_by OUT, 'groups[i].created_by'
        EXEC sp_OAMethod @jResp, 'StringOf', @idx OUT, 'groups[i].idx'
        EXEC sp_OAMethod @jResp, 'StringOf', @contact_expire_after OUT, 'groups[i].contact_expire_after'
        EXEC sp_OAMethod @jResp, 'StringOf', @contacts_count OUT, 'groups[i].contacts_count'
        SELECT @i = @i + 1
      END

    EXEC @hr = sp_OADestroy @http
    EXEC @hr = sp_OADestroy @req
    EXEC @hr = sp_OADestroy @resp
    EXEC @hr = sp_OADestroy @sbResponseBody
    EXEC @hr = sp_OADestroy @jResp
    EXEC @hr = sp_OADestroy @date_created
    EXEC @hr = sp_OADestroy @date_updated


END
GO