Sample code for 30+ languages & platforms
Xbase++

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 Xbase++ Downloads

Xbase++
LOCAL nSuccess
LOCAL oHttp
LOCAL oSbResponseBody
LOCAL oJResp
LOCAL nRespStatusCode
LOCAL cContact_id
LOCAL cEmail_addressAddress
LOCAL cEmail_addressPermission_to_send
LOCAL cEmail_addressCreated_at
LOCAL cEmail_addressUpdated_at
LOCAL cEmail_addressOpt_in_source
LOCAL cEmail_addressOpt_in_date
LOCAL cEmail_addressConfirm_status
LOCAL cFirst_name
LOCAL cLast_name
LOCAL cUpdate_source
LOCAL cCreate_source
LOCAL cCreated_at
LOCAL cUpdated_at
LOCAL cJob_title
LOCAL cCompany_name
LOCAL nBirthday_month
LOCAL nBirthday_day
LOCAL cAnniversary
LOCAL i
LOCAL nCount_i

nSuccess := 0

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

oHttp := CreateObject("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 := CreateObject("Chilkat.StringBuilder")
nSuccess := oHttp:QuickGetSb("https://api.cc.email/v3/contacts?lists={list_id},{list_id2}", oSbResponseBody)
IF (nSuccess == 0)
    ? oHttp:LastErrorText
    oHttp:destroy()
    oSbResponseBody:destroy()
    RETURN
ENDIF

oJResp := CreateObject("Chilkat.JsonObject")
oJResp:LoadSb(oSbResponseBody)
oJResp:EmitCompact := 0

? "Response Body:"
? oJResp:Emit()

nRespStatusCode := oHttp:LastStatus
? "Response Status Code = " + Str(nRespStatusCode)
IF (nRespStatusCode >= 400)
    ? "Response Header:"
    ? oHttp:LastHeader
    ? "Failed."
    oHttp:destroy()
    oSbResponseBody:destroy()
    oJResp:destroy()
    RETURN
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

i := 0
nCount_i := oJResp:SizeOfArray("contacts")
DO WHILE i < nCount_i
    oJResp:I := i
    cContact_id := oJResp:StringOf("contacts[i].contact_id")
    cEmail_addressAddress := oJResp:StringOf("contacts[i].email_address.address")
    cEmail_addressPermission_to_send := oJResp:StringOf("contacts[i].email_address.permission_to_send")
    cEmail_addressCreated_at := oJResp:StringOf("contacts[i].email_address.created_at")
    cEmail_addressUpdated_at := oJResp:StringOf("contacts[i].email_address.updated_at")
    cEmail_addressOpt_in_source := oJResp:StringOf("contacts[i].email_address.opt_in_source")
    cEmail_addressOpt_in_date := oJResp:StringOf("contacts[i].email_address.opt_in_date")
    cEmail_addressConfirm_status := oJResp:StringOf("contacts[i].email_address.confirm_status")
    cFirst_name := oJResp:StringOf("contacts[i].first_name")
    cLast_name := oJResp:StringOf("contacts[i].last_name")
    cUpdate_source := oJResp:StringOf("contacts[i].update_source")
    cCreate_source := oJResp:StringOf("contacts[i].create_source")
    cCreated_at := oJResp:StringOf("contacts[i].created_at")
    cUpdated_at := oJResp:StringOf("contacts[i].updated_at")
    cJob_title := oJResp:StringOf("contacts[i].job_title")
    cCompany_name := oJResp:StringOf("contacts[i].company_name")
    nBirthday_month := oJResp:IntOf("contacts[i].birthday_month")
    nBirthday_day := oJResp:IntOf("contacts[i].birthday_day")
    cAnniversary := oJResp:StringOf("contacts[i].anniversary")
    i := i + 1
ENDDO

oHttp:destroy()
oSbResponseBody:destroy()
oJResp:destroy()