Sample code for 30+ languages & platforms
Node.js

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 Node.js Downloads

Node.js
NODEJS_PRELUDE

function chilkatExample() {

    var success = false;

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

    var http = new 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

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

    var sbResponseBody = new chilkat.StringBuilder();
    success = http.QuickGetSb("https://api.cc.email/v3/contacts?lists={list_id},{list_id2}",sbResponseBody);
    if (success == false) {
        console.log(http.LastErrorText);
        return;
    }

    var jResp = new chilkat.JsonObject();
    jResp.LoadSb(sbResponseBody);
    jResp.EmitCompact = false;

    console.log("Response Body:");
    console.log(jResp.Emit());

    var respStatusCode = http.LastStatus;
    console.log("Response Status Code = " + respStatusCode);
    if (respStatusCode >= 400) {
        console.log("Response Header:");
        console.log(http.LastHeader);
        console.log("Failed.");
        return;
    }

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

    var contact_id;
    var email_addressAddress;
    var email_addressPermission_to_send;
    var email_addressCreated_at;
    var email_addressUpdated_at;
    var email_addressOpt_in_source;
    var email_addressOpt_in_date;
    var email_addressConfirm_status;
    var first_name;
    var last_name;
    var update_source;
    var create_source;
    var created_at;
    var updated_at;
    var job_title;
    var company_name;
    var birthday_month;
    var birthday_day;
    var anniversary;

    var i = 0;
    var count_i = jResp.SizeOfArray("contacts");
    while (i < count_i) {
        jResp.I = i;
        contact_id = jResp.StringOf("contacts[i].contact_id");
        email_addressAddress = jResp.StringOf("contacts[i].email_address.address");
        email_addressPermission_to_send = jResp.StringOf("contacts[i].email_address.permission_to_send");
        email_addressCreated_at = jResp.StringOf("contacts[i].email_address.created_at");
        email_addressUpdated_at = jResp.StringOf("contacts[i].email_address.updated_at");
        email_addressOpt_in_source = jResp.StringOf("contacts[i].email_address.opt_in_source");
        email_addressOpt_in_date = jResp.StringOf("contacts[i].email_address.opt_in_date");
        email_addressConfirm_status = jResp.StringOf("contacts[i].email_address.confirm_status");
        first_name = jResp.StringOf("contacts[i].first_name");
        last_name = jResp.StringOf("contacts[i].last_name");
        update_source = jResp.StringOf("contacts[i].update_source");
        create_source = jResp.StringOf("contacts[i].create_source");
        created_at = jResp.StringOf("contacts[i].created_at");
        updated_at = jResp.StringOf("contacts[i].updated_at");
        job_title = jResp.StringOf("contacts[i].job_title");
        company_name = jResp.StringOf("contacts[i].company_name");
        birthday_month = jResp.IntOf("contacts[i].birthday_month");
        birthday_day = jResp.IntOf("contacts[i].birthday_day");
        anniversary = jResp.StringOf("contacts[i].anniversary");
        i = i+1;
    }


}

chilkatExample();