Rust
Rust
Shippo Generate a Return Label
See more Shippo Examples
Demonstrates how to generate a pay-on-use return label.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 https://api.goshippo.com/shipments/ \
// -H "Authorization: ShippoToken <API_Token>" \
// -d address_from="d799c2679e644279b59fe661ac8fa488" \
// -d address_to="42236bcf36214f62bcc6d7f12f02a849" \
// -d parcels=["7df2ecf8b4224763ab7c71fae7ec8274"] \
// -d shipment_date="2013-12-03T12:00:00.000Z" \
// -d extra='{ "is_return": true}' \
// -d async=false
let req = chilkat::HttpRequest::new();
req.set_http_verb("POST");
req.set_path("/shipments/");
req.set_content_type("application/x-www-form-urlencoded");
req.add_param("address_from", "d799c2679e644279b59fe661ac8fa488");
req.add_param("address_to", "42236bcf36214f62bcc6d7f12f02a849");
req.add_param("parcels", "[\"7df2ecf8b4224763ab7c71fae7ec8274\"]");
req.add_param("shipment_date", "2013-12-03T12:00:00.000Z");
req.add_param("extra", "'{ \"is_return\": true}'");
req.add_param("async", "false");
req.add_header("Authorization", "ShippoToken <API_Token>");
let resp = chilkat::HttpResponse::new();
if http.http_req("https://api.goshippo.com/shipments/", &req, &resp).is_err() {
println!("{}", http.last_error_text());
return;
}
let sb_response_body = chilkat::StringBuilder::new();
let _ = resp.get_body_sb(&sb_response_body);
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 = resp.status_code();
println!("Response Status Code = {}", resp_status_code);
if resp_status_code >= 400 {
println!("Response Header:");
println!("{}", resp.header());
println!("Failed.");
return;
}
// Sample JSON response:
// (Sample code for parsing the JSON response is shown below)
// {}
// Sample code for parsing the JSON response...
// Use the following online tool to generate parsing code from sample JSON:
// Generate Parsing Code from JSON