Sample code for 30+ languages & platforms
SQL Server

SMSAPI - List Contacts

See more SMSAPI Examples

List Contacts

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 GET -H "Authorization: Bearer token_api_oauth" https://api.smsapi.com/contacts?phone_number=48500000000

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

    -- Adds the "Authorization: Bearer token_api_oauth" header.
    EXEC sp_OASetProperty @http, 'AuthToken', 'token_api_oauth'

    DECLARE @sbResponseBody int
    EXEC @hr = sp_OACreate 'Chilkat.StringBuilder', @sbResponseBody OUT

    EXEC sp_OAMethod @http, 'QuickGetSb', @success OUT, 'https://api.smsapi.com/contacts?phone_number=48500000000', @sbResponseBody
    IF @success = 0
      BEGIN
        EXEC sp_OAGetProperty @http, 'LastErrorText', @sTmp0 OUT
        PRINT @sTmp0
        EXEC @hr = sp_OADestroy @http
        EXEC @hr = sp_OADestroy @sbResponseBody
        RETURN
      END

    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 @http, 'LastStatus', @respStatusCode OUT

    PRINT 'Response Status Code = ' + @respStatusCode
    IF @respStatusCode >= 400
      BEGIN

        PRINT 'Response Header:'
        EXEC sp_OAGetProperty @http, 'LastHeader', @sTmp0 OUT
        PRINT @sTmp0

        PRINT 'Failed.'
        EXEC @hr = sp_OADestroy @http
        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)

    -- {
    --   "size": 1,
    --   "collection": [
    --     {
    --       "id": "5b83ba81a788494a0469490f",
    --       "first_name": "name",
    --       "last_name": "surname",
    --       "phone_number": "48500000000",
    --       "email": "bok@smsapi.com",
    --       "gender": "male",
    --       "city": "City",
    --       "country": "Poland",
    --       "source": "source",
    --       "date_created": "2018-08-27T10:46:57+02:00",
    --       "date_updated": "2018-08-27T10:46:57+02:00",
    --       "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": "login",
    --           "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 @id nvarchar(4000)

    DECLARE @first_name nvarchar(4000)

    DECLARE @last_name nvarchar(4000)

    DECLARE @phone_number nvarchar(4000)

    DECLARE @email nvarchar(4000)

    DECLARE @gender nvarchar(4000)

    DECLARE @city nvarchar(4000)

    DECLARE @country nvarchar(4000)

    DECLARE @source nvarchar(4000)

    DECLARE @j int

    DECLARE @count_j int

    DECLARE @name nvarchar(4000)

    DECLARE @description nvarchar(4000)

    DECLARE @created_by nvarchar(4000)

    DECLARE @idx nvarchar(4000)

    DECLARE @contact_expire_after nvarchar(4000)

    DECLARE @contacts_count nvarchar(4000)

    DECLARE @size int
    EXEC sp_OAMethod @jResp, 'IntOf', @size OUT, 'size'
    DECLARE @i int
    SELECT @i = 0
    DECLARE @count_i int
    EXEC sp_OAMethod @jResp, 'SizeOfArray', @count_i OUT, 'collection'
    WHILE @i < @count_i
      BEGIN
        EXEC sp_OASetProperty @jResp, 'I', @i
        EXEC sp_OAMethod @jResp, 'StringOf', @id OUT, 'collection[i].id'
        EXEC sp_OAMethod @jResp, 'StringOf', @first_name OUT, 'collection[i].first_name'
        EXEC sp_OAMethod @jResp, 'StringOf', @last_name OUT, 'collection[i].last_name'
        EXEC sp_OAMethod @jResp, 'StringOf', @phone_number OUT, 'collection[i].phone_number'
        EXEC sp_OAMethod @jResp, 'StringOf', @email OUT, 'collection[i].email'
        EXEC sp_OAMethod @jResp, 'StringOf', @gender OUT, 'collection[i].gender'
        EXEC sp_OAMethod @jResp, 'StringOf', @city OUT, 'collection[i].city'
        EXEC sp_OAMethod @jResp, 'StringOf', @country OUT, 'collection[i].country'
        EXEC sp_OAMethod @jResp, 'StringOf', @source OUT, 'collection[i].source'
        EXEC sp_OAMethod @jResp, 'DtOf', @success OUT, 'collection[i].date_created', 0, @date_created
        EXEC sp_OAMethod @jResp, 'DtOf', @success OUT, 'collection[i].date_updated', 0, @date_updated
        SELECT @j = 0
        EXEC sp_OAMethod @jResp, 'SizeOfArray', @count_j OUT, 'collection[i].groups'
        WHILE @j < @count_j
          BEGIN
            EXEC sp_OASetProperty @jResp, 'J', @j
            EXEC sp_OAMethod @jResp, 'StringOf', @id OUT, 'collection[i].groups[j].id'
            EXEC sp_OAMethod @jResp, 'StringOf', @name OUT, 'collection[i].groups[j].name'
            EXEC sp_OAMethod @jResp, 'DtOf', @success OUT, 'collection[i].groups[j].date_created', 0, @date_created
            EXEC sp_OAMethod @jResp, 'DtOf', @success OUT, 'collection[i].groups[j].date_updated', 0, @date_updated
            EXEC sp_OAMethod @jResp, 'StringOf', @description OUT, 'collection[i].groups[j].description'
            EXEC sp_OAMethod @jResp, 'StringOf', @created_by OUT, 'collection[i].groups[j].created_by'
            EXEC sp_OAMethod @jResp, 'StringOf', @idx OUT, 'collection[i].groups[j].idx'
            EXEC sp_OAMethod @jResp, 'StringOf', @contact_expire_after OUT, 'collection[i].groups[j].contact_expire_after'
            EXEC sp_OAMethod @jResp, 'StringOf', @contacts_count OUT, 'collection[i].groups[j].contacts_count'
            SELECT @j = @j + 1
          END
        SELECT @i = @i + 1
      END

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


END
GO