Dart
Dart
Constant Contact - View List Members
See more Constant Contact Examples
View the list membership by making a GET call to the Contact Collection endpointlChilkat Dart Downloads
import 'package:chilkat/chilkat.dart';
void main() {
// This example assumes the Chilkat API to have been previously unlocked.
// See Global Unlock Sample for sample code.
final http = CkHttp();
// 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');
final sbResponseBody = CkStringBuilder();
try {
http.quickGetSb('https://api.cc.email/v3/contacts?lists={list_id},{list_id2}', sbResponseBody);
} on ChilkatException catch (e) {
print(e.lastErrorText);
return;
}
final jResp = CkJsonObject();
jResp.loadSb(sbResponseBody);
jResp.emitCompact = false;
print('Response Body:');
print(jResp.emit());
final respStatusCode = http.lastStatus;
print('Response Status Code = $respStatusCode');
if (respStatusCode >= 400) {
print('Response Header:');
print(http.lastHeader);
print('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 contactId = '';
var emailAddressAddress = '';
var emailAddressPermissionToSend = '';
var emailAddressCreatedAt = '';
var emailAddressUpdatedAt = '';
var emailAddressOptInSource = '';
var emailAddressOptInDate = '';
var emailAddressConfirmStatus = '';
var firstName = '';
var lastName = '';
var updateSource = '';
var createSource = '';
var createdAt = '';
var updatedAt = '';
var jobTitle = '';
var companyName = '';
var birthdayMonth = 0;
var birthdayDay = 0;
var anniversary = '';
var i = 0;
final countI = jResp.sizeOfArray('contacts');
while (i < countI) {
jResp.i = i;
contactId = jResp.stringOf('contacts[i].contact_id');
emailAddressAddress = jResp.stringOf('contacts[i].email_address.address');
emailAddressPermissionToSend = jResp.stringOf('contacts[i].email_address.permission_to_send');
emailAddressCreatedAt = jResp.stringOf('contacts[i].email_address.created_at');
emailAddressUpdatedAt = jResp.stringOf('contacts[i].email_address.updated_at');
emailAddressOptInSource = jResp.stringOf('contacts[i].email_address.opt_in_source');
emailAddressOptInDate = jResp.stringOf('contacts[i].email_address.opt_in_date');
emailAddressConfirmStatus = jResp.stringOf('contacts[i].email_address.confirm_status');
firstName = jResp.stringOf('contacts[i].first_name');
lastName = jResp.stringOf('contacts[i].last_name');
updateSource = jResp.stringOf('contacts[i].update_source');
createSource = jResp.stringOf('contacts[i].create_source');
createdAt = jResp.stringOf('contacts[i].created_at');
updatedAt = jResp.stringOf('contacts[i].updated_at');
jobTitle = jResp.stringOf('contacts[i].job_title');
companyName = jResp.stringOf('contacts[i].company_name');
birthdayMonth = jResp.intOf('contacts[i].birthday_month');
birthdayDay = jResp.intOf('contacts[i].birthday_day');
anniversary = jResp.stringOf('contacts[i].anniversary');
i++;
}
}