Sample code for 30+ languages & platforms
Rust

Constant Contact - Get Contact by Email Address

See more Constant Contact Examples

Get the contact details for a given email address.

Chilkat Rust Downloads

Rust

// 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?email=new_contact_email&status=all' \
//   -H 'Accept: application/json' \
//   -H 'Authorization: Bearer ACCESS_TOKEN' \
//   -H 'Content-Type: application/json' \
//   -H 'Postman-Token: 98980ee6-b99f-41a9-9a7a-3b5651d2ea7f' \
//   -H 'cache-control: no-cache'

// 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("Accept", "application/json");
// Adds the "Authorization: Bearer ACCESS_TOKEN" header.
http.set_auth_token("ACCESS_TOKEN");
http.set_request_header("Postman-Token", "98980ee6-b99f-41a9-9a7a-3b5651d2ea7f");
http.set_request_header("Content-Type", "application/json");
http.set_request_header("cache-control", "no-cache");

let sb_response_body = chilkat::StringBuilder::new();
if http.quick_get_sb("https://api.cc.email/v3/contacts?email=danipper@example.com&status=all", &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": "8207fa8e-13dd-11eb-8a66-fa163e37306a",
//       "email_address": {
//         "address": "danipper@example.com",
//         "permission_to_send": "implicit",
//         "created_at": "2020-10-21T20:39:25Z",
//         "updated_at": "2020-10-21T20:39:25Z",
//         "opt_in_source": "Account",
//         "opt_in_date": "2020-10-21T20:39:25Z",
//         "confirm_status": "off"
//       },
//       "first_name": "David",
//       "last_name": "Nipper",
//       "job_title": "Musician",
//       "company_name": "Acme Corp.",
//       "birthday_month": 11,
//       "birthday_day": 24,
//       "anniversary": "2006-11-15",
//       "create_source": "Account",
//       "created_at": "2020-10-21T20:39:25Z",
//       "updated_at": "2020-10-21T20:39:25Z"
//     }
//   ]
// }

// 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].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();
    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();
    i = i + 1;
}