Rust
Rust
Constant Contact - Delete a Contact
See more Constant Contact Examples
Deletes the contact with a given id.Chilkat 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 DELETE \
// https://api.cc.email/v3/contacts/{contact_id} \
// -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
// Adds the "Authorization: Bearer ACCESS_TOKEN" header.
http.set_auth_token("ACCESS_TOKEN");
http.set_request_header("Accept", "application/json");
http.set_request_header("Content-Type", "application/json");
http.set_request_header("Cache-Control", "no-cache");
let resp = chilkat::HttpResponse::new();
if http.http_no_body("DELETE", "https://api.cc.email/v3/contacts/{contact_id}", &resp).is_err() {
println!("{}", http.last_error_text());
return;
}
// Success is a 204 response status code with an empty body.
println!("Response status code: {}", resp.status_code());
println!("Response body:");
println!("{}", resp.body_str());