Sample code for 30+ languages & platforms
AutoIt

Constant Contact - View List Members

See more Constant Contact Examples

View the list membership by making a GET call to the Contact Collection endpointl

Chilkat AutoIt Downloads

AutoIt
Local $bSuccess = False

; This example assumes the Chilkat API to have been previously unlocked.
; See Global Unlock Sample for sample code.

$oHttp = ObjCreate("Chilkat.Http")

; Implements the following CURL command:

; curl -X GET \
;   'https://api.cc.email/v3/contacts?lists={list_id},{list_id2}' \
;   -H 'accept: application/json' \
;   -H 'authorization: Bearer {access_token}' \
;   -H 'cache-control: no-cache' \
;   -H 'content-type: application/json'

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

$oHttp.SetRequestHeader "content-type","application/json"
; Adds the "Authorization: Bearer ACCESS_TOKEN" header.
$oHttp.AuthToken = "ACCESS_TOKEN"
$oHttp.SetRequestHeader "cache-control","no-cache"
$oHttp.SetRequestHeader "accept","application/json"

$oSbResponseBody = ObjCreate("Chilkat.StringBuilder")
$bSuccess = $oHttp.QuickGetSb("https://api.cc.email/v3/contacts?lists={list_id},{list_id2}",$oSbResponseBody)
If ($bSuccess = False) Then
    ConsoleWrite($oHttp.LastErrorText & @CRLF)
    Exit
EndIf

$oJResp = ObjCreate("Chilkat.JsonObject")
$oJResp.LoadSb($oSbResponseBody)
$oJResp.EmitCompact = False

ConsoleWrite("Response Body:" & @CRLF)
ConsoleWrite($oJResp.Emit() & @CRLF)

Local $iRespStatusCode = $oHttp.LastStatus
ConsoleWrite("Response Status Code = " & $iRespStatusCode & @CRLF)
If ($iRespStatusCode >= 400) Then
    ConsoleWrite("Response Header:" & @CRLF)
    ConsoleWrite($oHttp.LastHeader & @CRLF)
    ConsoleWrite("Failed." & @CRLF)
    Exit
EndIf

; Sample JSON response:
; (Sample code for parsing the JSON response is shown below)

; {
;   "contacts": [
;     {
;       "contact_id": "{contact_id}",
;       "email_address": {
;         "address": "dprice@example.com",
;         "permission_to_send": "implicit",
;         "created_at": "2013-11-26T15:45:42-05:00",
;         "updated_at": "2013-11-26T15:45:42-05:00",
;         "opt_in_source": "Account",
;         "opt_in_date": "2013-11-26T15:45:42-05:00",
;         "confirm_status": "off"
;       },
;       "first_name": "David",
;       "last_name": "Price",
;       "update_source": "Account",
;       "create_source": "Account",
;       "created_at": "2013-11-26T15:45:42-05:00",
;       "updated_at": "2017-09-06T15:48:31-04:00"
;     },
;     {
;       "contact_id": "{contact_id}",
;       "email_address": {
;         "address": "jprice@example.com",
;         "permission_to_send": "implicit",
;         "created_at": "2013-11-26T15:45:50-05:00",
;         "updated_at": "2013-11-26T15:45:50-05:00",
;         "opt_in_source": "Account",
;         "opt_in_date": "2013-11-26T15:45:50-05:00",
;         "confirm_status": "off"
;       },
;       "first_name": "Jennifer",
;       "last_name": "Price",
;       "create_source": "Account",
;       "created_at": "2013-11-26T15:45:50-05:00",
;       "updated_at": "2013-11-26T15:45:50-05:00"
;     },
;     {
;       "contact_id": "{contact_id}",
;       "email_address": {
;         "address": "joe.jones@example.com",
;         "permission_to_send": "implicit",
;         "created_at": "2017-11-06T15:35:30-05:00",
;         "updated_at": "2017-11-06T15:35:30-05:00",
;         "opt_in_source": "Account",
;         "opt_in_date": "2017-11-06T15:35:30-05:00",
;         "confirm_status": "off"
;       },
;       "first_name": "Joe",
;       "last_name": "Jones",
;       "job_title": "Chief Innovation Officer",
;       "company_name": "RelativeGravity, Inc.",
;       "birthday_month": 11,
;       "birthday_day": 24,
;       "anniversary": "2006-11-15",
;       "create_source": "Account",
;       "created_at": "2017-11-06T15:35:30-05:00",
;       "updated_at": "2017-11-06T15:35:30-05:00"
;     },
;     {
;       "contact_id": "{contact_id}",
;       "email_address": {
;         "address": "mmiller@example.com",
;         "permission_to_send": "implicit",
;         "created_at": "2013-11-26T15:46:04-05:00",
;         "updated_at": "2013-11-26T15:46:04-05:00",
;         "opt_in_source": "Account",
;         "opt_in_date": "2013-11-26T15:46:04-05:00",
;         "confirm_status": "off"
;       },
;       "first_name": "Mike",
;       "last_name": "Miller.",
;       "create_source": "Account",
;       "created_at": "2013-11-26T15:46:04-05:00",
;       "updated_at": "2013-11-26T15:46:04-05:00"
;     },
;     {
;       "contact_id": "{contact_id}",
;       "email_address": {
;         "address": "sheryl.kavanaugh@example.com",
;         "permission_to_send": "implicit",
;         "created_at": "2013-11-26T15:46:10-05:00",
;         "updated_at": "2013-11-26T15:46:10-05:00",
;         "opt_in_source": "Account",
;         "opt_in_date": "2013-11-26T15:46:10-05:00",
;         "confirm_status": "off"
;       },
;       "first_name": "Sheryl",
;       "last_name": "Kavanaugh",
;       "create_source": "Account",
;       "created_at": "2013-11-26T15:46:10-05:00",
;       "updated_at": "2013-11-26T15:46:10-05:00"
;     }
;   ]
; }

; Sample code for parsing the JSON response...
; Use the following online tool to generate parsing code from sample JSON:
; Generate Parsing Code from JSON

Local $sContact_id
Local $sEmail_addressAddress
Local $sEmail_addressPermission_to_send
Local $sEmail_addressCreated_at
Local $sEmail_addressUpdated_at
Local $sEmail_addressOpt_in_source
Local $sEmail_addressOpt_in_date
Local $sEmail_addressConfirm_status
Local $sFirst_name
Local $sLast_name
Local $sUpdate_source
Local $sCreate_source
Local $sCreated_at
Local $sUpdated_at
Local $sJob_title
Local $sCompany_name
Local $iBirthday_month
Local $iBirthday_day
Local $sAnniversary

Local $i = 0
Local $iCount_i = $oJResp.SizeOfArray("contacts")
While $i < $iCount_i
    $oJResp.I = $i
    $sContact_id = $oJResp.StringOf("contacts[i].contact_id")
    $sEmail_addressAddress = $oJResp.StringOf("contacts[i].email_address.address")
    $sEmail_addressPermission_to_send = $oJResp.StringOf("contacts[i].email_address.permission_to_send")
    $sEmail_addressCreated_at = $oJResp.StringOf("contacts[i].email_address.created_at")
    $sEmail_addressUpdated_at = $oJResp.StringOf("contacts[i].email_address.updated_at")
    $sEmail_addressOpt_in_source = $oJResp.StringOf("contacts[i].email_address.opt_in_source")
    $sEmail_addressOpt_in_date = $oJResp.StringOf("contacts[i].email_address.opt_in_date")
    $sEmail_addressConfirm_status = $oJResp.StringOf("contacts[i].email_address.confirm_status")
    $sFirst_name = $oJResp.StringOf("contacts[i].first_name")
    $sLast_name = $oJResp.StringOf("contacts[i].last_name")
    $sUpdate_source = $oJResp.StringOf("contacts[i].update_source")
    $sCreate_source = $oJResp.StringOf("contacts[i].create_source")
    $sCreated_at = $oJResp.StringOf("contacts[i].created_at")
    $sUpdated_at = $oJResp.StringOf("contacts[i].updated_at")
    $sJob_title = $oJResp.StringOf("contacts[i].job_title")
    $sCompany_name = $oJResp.StringOf("contacts[i].company_name")
    $iBirthday_month = $oJResp.IntOf("contacts[i].birthday_month")
    $iBirthday_day = $oJResp.IntOf("contacts[i].birthday_day")
    $sAnniversary = $oJResp.StringOf("contacts[i].anniversary")
    $i = $i + 1
Wend