Sample code for 30+ languages & platforms
Rust

MWS RequestReport (Amazon Marketplace Web Service)

See more Amazon MWS Examples

Creates a report request and submits the request to Amazon MWS.

See Amazon MWS RequestReport for more information.

Chilkat Rust Downloads

Rust

// This example requires the Chilkat API to have been previously unlocked.
// See Global Unlock Sample for sample code.

let rest = chilkat::Rest::new();

// Connect to the Amazon MWS REST server.
// 
// Make sure to connect to the correct Amazon MWS Endpoint, otherwise
// you'll get an HTTP 401 response code.
// 
// The possible servers are:
// 
// North America (NA) 	https://mws.amazonservices.com
// Europe (EU) 	https://mws-eu.amazonservices.com
// India (IN) 	https://mws.amazonservices.in
// China (CN) 	https://mws.amazonservices.com.cn
// Japan (JP) 	https://mws.amazonservices.jp 
// 
let b_tls = true;
let port = 443;
let b_auto_reconnect = true;
if rest.connect("mws.amazonservices.com", port, b_tls, b_auto_reconnect).is_err() {
    println!("ConnectFailReason: {}", rest.connect_fail_reason());
    println!("{}", rest.last_error_text());
    return;
}

rest.set_host("mws.amazonservices.com");

let _ = rest.add_query_param("AWSAccessKeyId", "0PB842EXAMPLE7N4ZTR2");
let _ = rest.add_query_param("Action", "RequestReport");
let _ = rest.add_query_param("EndDate", "2008-06-26T18:12:21");
let _ = rest.add_query_param("MWSAuthToken", "amzn.mws.4ea38b7b-f563-7709-4bae-87aeaEXAMPLE");
let _ = rest.add_query_param("Marketplace", "ATVPDKIKX0DER");
let _ = rest.add_query_param("ReportType", "_GET_MERCHANT_LISTINGS_DATA_");
let _ = rest.add_query_param("SellerId", "A1XEXAMPLE5E6");
let _ = rest.add_query_param("SignatureMethod", "HmacSHA256");
let _ = rest.add_query_param("SignatureVersion", "2");
let _ = rest.add_query_param("StartDate", "2009-01-03T18:12:21");
let _ = rest.add_query_param("Version", "2009-01-01");

// Add the MWS Signature param.  (Also adds the Timestamp parameter using the curent system date/time.)
// The AddMwsSignature method adds the Timestamp and Signature query params.
let _ = rest.add_mws_signature("POST", "/Reports/2009-01-01", "mws.amazonservices.com", "MWS_SECRET_KEY");

let Ok(response_xml) = rest.full_request_form_url_encoded("POST", "/Reports/2009-01-01") else {
    println!("{}", rest.last_error_text());
    return;
};

if rest.response_status_code() != 200 {
    // Examine the request/response to see what happened.
    println!("response status code = {}", rest.response_status_code());
    println!("response status text = {}", rest.response_status_text());
    println!("response header: {}", rest.response_header());
    println!("response body: {}", response_xml);
    println!("---");
    println!("LastRequestStartLine: {}", rest.last_request_start_line());
    println!("LastRequestHeader: {}", rest.last_request_header());
}

// Examine the XML returned in the response body.
println!("{}", response_xml);
println!("----");
println!("Success.");

// Sample Response

// Use this online tool to generate parsing code from sample XML: 
// Generate Parsing Code from XML

// <?xml version="1.0"?>
// <RequestReportResponse
//     xmlns="http://mws.amazonaws.com/doc/2009-01-01/">
//     <RequestReportResult>
//         <ReportRequestInfo>
//             <ReportRequestId>2291326454</ReportRequestId>
//             <ReportType>_GET_MERCHANT_LISTINGS_DATA_</ReportType>
//             <StartDate>2009-01-21T02:10:39+00:00</StartDate>
//             <EndDate>2009-02-13T02:10:39+00:00</EndDate>
//             <Scheduled>false</Scheduled>
//             <SubmittedDate>2009-02-20T02:10:39+00:00</SubmittedDate>
//             <ReportProcessingStatus>_SUBMITTED_</ReportProcessingStatus>
//         </ReportRequestInfo>
//     </RequestReportResult>
//     <ResponseMetadata>
//         <RequestId>88faca76-b600-46d2-b53c-0c8c4533e43a</RequestId>
//     </ResponseMetadata>
// </RequestReportResponse>

let xml = chilkat::Xml::new();
let _ = xml.load_xml(&response_xml);

let request_report_response_xmlns = xml.get_attr_value("xmlns").unwrap_or_default();
let report_request_id = xml.get_child_content("RequestReportResult|ReportRequestInfo|ReportRequestId").unwrap_or_default();
let report_type = xml.get_child_content("RequestReportResult|ReportRequestInfo|ReportType").unwrap_or_default();
let start_date = xml.get_child_content("RequestReportResult|ReportRequestInfo|StartDate").unwrap_or_default();
let end_date = xml.get_child_content("RequestReportResult|ReportRequestInfo|EndDate").unwrap_or_default();
let scheduled = xml.get_child_content("RequestReportResult|ReportRequestInfo|Scheduled").unwrap_or_default();
let submitted_date = xml.get_child_content("RequestReportResult|ReportRequestInfo|SubmittedDate").unwrap_or_default();
let report_processing_status = xml.get_child_content("RequestReportResult|ReportRequestInfo|ReportProcessingStatus").unwrap_or_default();
let request_id = xml.get_child_content("ResponseMetadata|RequestId").unwrap_or_default();