Sample code for 30+ languages & platforms
PowerBuilder

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 PowerBuilder Downloads

PowerBuilder
integer li_rc
integer li_Success
oleobject loo_Http
oleobject loo_SbResponseBody
oleobject loo_JResp
integer li_RespStatusCode
string ls_Contact_id
string ls_Email_addressAddress
string ls_Email_addressPermission_to_send
string ls_Email_addressCreated_at
string ls_Email_addressUpdated_at
string ls_Email_addressOpt_in_source
string ls_Email_addressOpt_in_date
string ls_Email_addressConfirm_status
string ls_First_name
string ls_Last_name
string ls_Update_source
string ls_Create_source
string ls_Created_at
string ls_Updated_at
string ls_Job_title
string ls_Company_name
integer li_Birthday_month
integer li_Birthday_day
string ls_Anniversary
integer i
integer li_Count_i

li_Success = 0

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

loo_Http = create oleobject
li_rc = loo_Http.ConnectToNewObject("Chilkat.Http")
if li_rc < 0 then
    destroy loo_Http
    MessageBox("Error","Connecting to COM object failed")
    return
end if

// 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

loo_Http.SetRequestHeader("content-type","application/json")
// Adds the "Authorization: Bearer ACCESS_TOKEN" header.
loo_Http.AuthToken = "ACCESS_TOKEN"
loo_Http.SetRequestHeader("cache-control","no-cache")
loo_Http.SetRequestHeader("accept","application/json")

loo_SbResponseBody = create oleobject
li_rc = loo_SbResponseBody.ConnectToNewObject("Chilkat.StringBuilder")

li_Success = loo_Http.QuickGetSb("https://api.cc.email/v3/contacts?lists={list_id},{list_id2}",loo_SbResponseBody)
if li_Success = 0 then
    Write-Debug loo_Http.LastErrorText
    destroy loo_Http
    destroy loo_SbResponseBody
    return
end if

loo_JResp = create oleobject
li_rc = loo_JResp.ConnectToNewObject("Chilkat.JsonObject")

loo_JResp.LoadSb(loo_SbResponseBody)
loo_JResp.EmitCompact = 0

Write-Debug "Response Body:"
Write-Debug loo_JResp.Emit()

li_RespStatusCode = loo_Http.LastStatus
Write-Debug "Response Status Code = " + string(li_RespStatusCode)
if li_RespStatusCode >= 400 then
    Write-Debug "Response Header:"
    Write-Debug loo_Http.LastHeader
    Write-Debug "Failed."
    destroy loo_Http
    destroy loo_SbResponseBody
    destroy loo_JResp
    return
end if

// 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
li_Count_i = loo_JResp.SizeOfArray("contacts")
do while i < li_Count_i
    loo_JResp.I = i
    ls_Contact_id = loo_JResp.StringOf("contacts[i].contact_id")
    ls_Email_addressAddress = loo_JResp.StringOf("contacts[i].email_address.address")
    ls_Email_addressPermission_to_send = loo_JResp.StringOf("contacts[i].email_address.permission_to_send")
    ls_Email_addressCreated_at = loo_JResp.StringOf("contacts[i].email_address.created_at")
    ls_Email_addressUpdated_at = loo_JResp.StringOf("contacts[i].email_address.updated_at")
    ls_Email_addressOpt_in_source = loo_JResp.StringOf("contacts[i].email_address.opt_in_source")
    ls_Email_addressOpt_in_date = loo_JResp.StringOf("contacts[i].email_address.opt_in_date")
    ls_Email_addressConfirm_status = loo_JResp.StringOf("contacts[i].email_address.confirm_status")
    ls_First_name = loo_JResp.StringOf("contacts[i].first_name")
    ls_Last_name = loo_JResp.StringOf("contacts[i].last_name")
    ls_Update_source = loo_JResp.StringOf("contacts[i].update_source")
    ls_Create_source = loo_JResp.StringOf("contacts[i].create_source")
    ls_Created_at = loo_JResp.StringOf("contacts[i].created_at")
    ls_Updated_at = loo_JResp.StringOf("contacts[i].updated_at")
    ls_Job_title = loo_JResp.StringOf("contacts[i].job_title")
    ls_Company_name = loo_JResp.StringOf("contacts[i].company_name")
    li_Birthday_month = loo_JResp.IntOf("contacts[i].birthday_month")
    li_Birthday_day = loo_JResp.IntOf("contacts[i].birthday_day")
    ls_Anniversary = loo_JResp.StringOf("contacts[i].anniversary")
    i = i + 1
loop


destroy loo_Http
destroy loo_SbResponseBody
destroy loo_JResp