Rust
Rust
Constant Contact - View List Members
See more Constant Contact Examples
View the list membership by making a GET call to the Contact Collection endpointlChilkat Rust Downloads
// This example assumes the Chilkat API to have been previously unlocked.
// See Global Unlock Sample for sample code.
let http = chilkat::Http::new();
// 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.set_request_header("content-type", "application/json");
// Adds the "Authorization: Bearer ACCESS_TOKEN" header.
http.set_auth_token("ACCESS_TOKEN");
http.set_request_header("cache-control", "no-cache");
http.set_request_header("accept", "application/json");
let sb_response_body = chilkat::StringBuilder::new();
if http.quick_get_sb("https://api.cc.email/v3/contacts?lists={list_id},{list_id2}", &sb_response_body).is_err() {
println!("{}", http.last_error_text());
return;
}
let j_resp = chilkat::JsonObject::new();
let _ = j_resp.load_sb(&sb_response_body);
j_resp.set_emit_compact(false);
println!("Response Body:");
println!("{}", j_resp.emit().unwrap_or_default());
let resp_status_code = http.last_status();
println!("Response Status Code = {}", resp_status_code);
if resp_status_code >= 400 {
println!("Response Header:");
println!("{}", http.last_header());
println!("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
let mut i = 0;
let count_i = j_resp.size_of_array("contacts");
while i < count_i {
j_resp.set_i(i);
let _ = j_resp.string_of("contacts[i].contact_id").unwrap_or_default();
let _ = j_resp.string_of("contacts[i].email_address.address").unwrap_or_default();
let _ = j_resp.string_of("contacts[i].email_address.permission_to_send").unwrap_or_default();
let _ = j_resp.string_of("contacts[i].email_address.created_at").unwrap_or_default();
let _ = j_resp.string_of("contacts[i].email_address.updated_at").unwrap_or_default();
let _ = j_resp.string_of("contacts[i].email_address.opt_in_source").unwrap_or_default();
let _ = j_resp.string_of("contacts[i].email_address.opt_in_date").unwrap_or_default();
let _ = j_resp.string_of("contacts[i].email_address.confirm_status").unwrap_or_default();
let _ = j_resp.string_of("contacts[i].first_name").unwrap_or_default();
let _ = j_resp.string_of("contacts[i].last_name").unwrap_or_default();
let _ = j_resp.string_of("contacts[i].update_source").unwrap_or_default();
let _ = j_resp.string_of("contacts[i].create_source").unwrap_or_default();
let _ = j_resp.string_of("contacts[i].created_at").unwrap_or_default();
let _ = j_resp.string_of("contacts[i].updated_at").unwrap_or_default();
let _ = j_resp.string_of("contacts[i].job_title").unwrap_or_default();
let _ = j_resp.string_of("contacts[i].company_name").unwrap_or_default();
let _ = j_resp.int_of("contacts[i].birthday_month");
let _ = j_resp.int_of("contacts[i].birthday_day");
let _ = j_resp.string_of("contacts[i].anniversary").unwrap_or_default();
i = i + 1;
}