Sample code for 30+ languages & platforms
Rust Requires Chilkat v11.0.0+

Walmart v3 Ship Order Lines

See more Walmart v3 Examples

Updates the status of order lines to Shipped and trigger the charge to the customer. The response to a successful call contains the order with the shipped line items.

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();

http.set_request_header("WM_QOS.CORRELATION_ID", "b3261d2d-028a-4ef7-8602-633c23200af6");
http.set_request_header("WM_SEC.ACCESS_TOKEN", "eyJraWQiOiIzZjVhYTFmNS1hYWE5LTQzM.....");
http.set_request_header("Accept", "application/json");
http.set_request_header("WM_SVC.NAME", "Walmart Marketplace");

// Send the following in the request body:

// {
//   "orderShipment": {
//     "orderLines": {
//       "orderLine": [
//         {
//           "lineNumber": "1",
//           "intentToCancelOverride": false,
//           "sellerOrderId": "92344",
//           "orderLineStatuses": {
//             "orderLineStatus": [
//               {
//                 "status": "Shipped",
//                 "statusQuantity": {
//                   "unitOfMeasurement": "EACH",
//                   "amount": "1"
//                 },
//                 "trackingInfo": {
//                   "shipDateTime": 1580821866000,
//                   "carrierName": {
//                     "carrier": "UPS"
//                   },
//                   "methodCode": "Standard",
//                   "trackingNumber": "22344",
//                   "trackingURL": "http://walmart/tracking/ups?&type=MP&seller_id=12345&promise_date=03/02/2020&dzip=92840&tracking_numbers=92345"
//                 },
//                 "returnCenterAddress": {
//                   "name": "walmart",
//                   "address1": "walmart store 2",
//                   "city": "Huntsville",
//                   "state": "AL",
//                   "postalCode": "35805",
//                   "country": "USA",
//                   "dayPhone": "12344",
//                   "emailId": "walmart@walmart.com"
//                 }
//               }
//             ]
//           }
//         },
//         {
//           "lineNumber": "2",
//           "sellerOrderId": "92344",
//           "orderLineStatuses": {
//             "orderLineStatus": [
//               {
//                 "status": "Shipped",
//                 "statusQuantity": {
//                   "unitOfMeasurement": "EACH",
//                   "amount": "1"
//                 },
//                 "trackingInfo": {
//                   "shipDateTime": 1580821866000,
//                   "carrierName": {
//                     "carrier": "FedEx"
//                   },
//                   "methodCode": "Express",
//                   "trackingNumber": "22344",
//                   "trackingURL": "http://walmart/tracking/fedEx?&type=MP&seller_id=12345&promise_date=03/02/2020&dzip=92840&tracking_numbers=92344"
//                 },
//                 "returnCenterAddress": {
//                   "name": "walmart",
//                   "address1": "walmart store 2",
//                   "city": "Huntsville",
//                   "state": "AL",
//                   "postalCode": "35805",
//                   "country": "USA",
//                   "dayPhone": "12344",
//                   "emailId": "walmart@walmart.com"
//                 }
//               }
//             ]
//           }
//         }
//       ]
//     }
//   }
// }

let json = chilkat::JsonObject::new();
let mut order_line_index = 0;
let mut status_index = 0;
json.set_i(order_line_index);
json.set_j(status_index);
let _ = json.update_string("orderShipment.orderLines.orderLine[i].lineNumber", "1");
let _ = json.update_bool("orderShipment.orderLines.orderLine[i].intentToCancelOverride", false);
let _ = json.update_string("orderShipment.orderLines.orderLine[i].sellerOrderId", "92344");
let _ = json.update_string("orderShipment.orderLines.orderLine[i].orderLineStatuses.orderLineStatus[j].status", "Shipped");
let _ = json.update_string("orderShipment.orderLines.orderLine[i].orderLineStatuses.orderLineStatus[j].statusQuantity.unitOfMeasurement", "EACH");
let _ = json.update_string("orderShipment.orderLines.orderLine[i].orderLineStatuses.orderLineStatus[j].statusQuantity.amount", "1");
let _ = json.update_int("orderShipment.orderLines.orderLine[i].orderLineStatuses.orderLineStatus[j].trackingInfo.shipDateTime", 123);
let _ = json.update_string("orderShipment.orderLines.orderLine[i].orderLineStatuses.orderLineStatus[j].trackingInfo.carrierName.carrier", "UPS");
let _ = json.update_string("orderShipment.orderLines.orderLine[i].orderLineStatuses.orderLineStatus[j].trackingInfo.methodCode", "Standard");
let _ = json.update_string("orderShipment.orderLines.orderLine[i].orderLineStatuses.orderLineStatus[j].trackingInfo.trackingNumber", "22344");
let _ = json.update_string("orderShipment.orderLines.orderLine[i].orderLineStatuses.orderLineStatus[j].trackingInfo.trackingURL", "http://walmart/tracking/ups?&type=MP&seller_id=12345&promise_date=03/02/2020&dzip=92840&tracking_numbers=92345");
let _ = json.update_string("orderShipment.orderLines.orderLine[i].orderLineStatuses.orderLineStatus[j].returnCenterAddress.name", "walmart");
let _ = json.update_string("orderShipment.orderLines.orderLine[i].orderLineStatuses.orderLineStatus[j].returnCenterAddress.address1", "walmart store 2");
let _ = json.update_string("orderShipment.orderLines.orderLine[i].orderLineStatuses.orderLineStatus[j].returnCenterAddress.city", "Huntsville");
let _ = json.update_string("orderShipment.orderLines.orderLine[i].orderLineStatuses.orderLineStatus[j].returnCenterAddress.state", "AL");
let _ = json.update_string("orderShipment.orderLines.orderLine[i].orderLineStatuses.orderLineStatus[j].returnCenterAddress.postalCode", "35805");
let _ = json.update_string("orderShipment.orderLines.orderLine[i].orderLineStatuses.orderLineStatus[j].returnCenterAddress.country", "USA");
let _ = json.update_string("orderShipment.orderLines.orderLine[i].orderLineStatuses.orderLineStatus[j].returnCenterAddress.dayPhone", "12344");
let _ = json.update_string("orderShipment.orderLines.orderLine[i].orderLineStatuses.orderLineStatus[j].returnCenterAddress.emailId", "walmart@walmart.com");

order_line_index = order_line_index + 1;
status_index = 0;
json.set_i(order_line_index);
json.set_j(status_index);
let _ = json.update_string("orderShipment.orderLines.orderLine[i].lineNumber", "2");
let _ = json.update_string("orderShipment.orderLines.orderLine[i].sellerOrderId", "92344");
let _ = json.update_string("orderShipment.orderLines.orderLine[i].orderLineStatuses.orderLineStatus[j].status", "Shipped");
let _ = json.update_string("orderShipment.orderLines.orderLine[i].orderLineStatuses.orderLineStatus[j].statusQuantity.unitOfMeasurement", "EACH");
let _ = json.update_string("orderShipment.orderLines.orderLine[i].orderLineStatuses.orderLineStatus[j].statusQuantity.amount", "1");
let _ = json.update_int("orderShipment.orderLines.orderLine[i].orderLineStatuses.orderLineStatus[j].trackingInfo.shipDateTime", 123);
let _ = json.update_string("orderShipment.orderLines.orderLine[i].orderLineStatuses.orderLineStatus[j].trackingInfo.carrierName.carrier", "FedEx");
let _ = json.update_string("orderShipment.orderLines.orderLine[i].orderLineStatuses.orderLineStatus[j].trackingInfo.methodCode", "Express");
let _ = json.update_string("orderShipment.orderLines.orderLine[i].orderLineStatuses.orderLineStatus[j].trackingInfo.trackingNumber", "22344");
let _ = json.update_string("orderShipment.orderLines.orderLine[i].orderLineStatuses.orderLineStatus[j].trackingInfo.trackingURL", "http://walmart/tracking/fedEx?&type=MP&seller_id=12345&promise_date=03/02/2020&dzip=92840&tracking_numbers=92344");
let _ = json.update_string("orderShipment.orderLines.orderLine[i].orderLineStatuses.orderLineStatus[j].returnCenterAddress.name", "walmart");
let _ = json.update_string("orderShipment.orderLines.orderLine[i].orderLineStatuses.orderLineStatus[j].returnCenterAddress.address1", "walmart store 2");
let _ = json.update_string("orderShipment.orderLines.orderLine[i].orderLineStatuses.orderLineStatus[j].returnCenterAddress.city", "Huntsville");
let _ = json.update_string("orderShipment.orderLines.orderLine[i].orderLineStatuses.orderLineStatus[j].returnCenterAddress.state", "AL");
let _ = json.update_string("orderShipment.orderLines.orderLine[i].orderLineStatuses.orderLineStatus[j].returnCenterAddress.postalCode", "35805");
let _ = json.update_string("orderShipment.orderLines.orderLine[i].orderLineStatuses.orderLineStatus[j].returnCenterAddress.country", "USA");
let _ = json.update_string("orderShipment.orderLines.orderLine[i].orderLineStatuses.orderLineStatus[j].returnCenterAddress.dayPhone", "12344");
let _ = json.update_string("orderShipment.orderLines.orderLine[i].orderLineStatuses.orderLineStatus[j].returnCenterAddress.emailId", "walmart@walmart.com");

let resp = chilkat::HttpResponse::new();
if http.http_json("POST", "https://api-gateway.walmart.com/v3/orders/{purchaseOrderId}/shipping", &json, "application/json", &resp).is_err() {
    println!("{}", http.last_error_text());
    return;
}

println!("Response status code: {}", resp.status_code());

let _ = resp.get_body_json(&json);

// A sample JSON response:

// {
//   "order": {
//     "purchaseOrderId": "1234567891234",
//     "customerOrderId": "9876543212345",
//     "sellerOrderId": "13233454564657",
//     "customerEmailId": "customer@walmartlabs.com",
//     "orderDate": 1478284060000,
//     "shippingInfo": {
//       "phone": "6501234567",
//       "estimatedDeliveryDate": 1479798000000,
//       "estimatedShipDate": 1478674800000,
//       "methodCode": "Value",
//       "postalAddress": {
//         "name": "Jane Doe",
//         "address1": "123 Main street",
//         "city": "Sunnyvale",
//         "state": "CA",
//         "postalCode": "94086",
//         "country": "USA",
//         "addressType": "OFFICE"
//       }
//     },
//     "orderLines": {
//       "orderLine": [
//         {
//           "lineNumber": "1",
//           "item": {
//             "productName": "Kenmore CF-1 or 20-86883 Canister Secondary Filter Generic 2 Pack",
//             "sku": "wei-ASSET-675gku675"
//           },
//           "charges": {
//             "charge": [
//               {
//                 "chargeType": "PRODUCT",
//                 "chargeName": "ItemPrice",
//                 "chargeAmount": {
//                   "currency": "USD",
//                   "amount": 555
//                 },
//                 "tax": {
//                   "taxName": "Tax1",
//                   "taxAmount": {
//                     "currency": "USD",
//                     "amount": 48.56
//                   }
//                 }
//               }
//             ]
//           },
//           "orderLineQuantity": {
//             "unitOfMeasurement": "EACH",
//             "amount": "1"
//           },
//           "statusDate": 1478297929000,
//           "orderLineStatuses": {
//             "orderLineStatus": [
//               {
//                 "status": "Shipped",
//                 "statusQuantity": {
//                   "unitOfMeasurement": "EACH",
//                   "amount": "1"
//                 },
//                 "trackingInfo": {
//                   "shipDateTime": 1438163400000,
//                   "carrierName": {
//                     "carrier": "FedEx"
//                   },
//                   "methodCode": "Value",
//                   "trackingNumber": "911001572321619861",
//                   "trackingURL": "http://www.fedex.com/Tracking?action=track=english=us=x=911001572321619861"
//                 },
//                 "returnCenterAddress": {
//                   "name": "ABC",
//                   "address1": "123 Bridge street",
//                   "city": "Huntsville",
//                   "state": "AL",
//                   "postalCode": "35805",
//                   "country": "USA",
//                   "dayPhone": "6501234567",
//                   "emailId": "RCemailaddress@company.com"
//                 }
//               }
//             ]
//           }
//         }
//       ]
//     }
//   }
// }

json.set_emit_compact(false);
println!("Response JSON:");
println!("{}", json.emit().unwrap_or_default());

// Insert code here to load the above JSON into the json object.

let mut count_j: i32 = 0;

let purchase_order_id = json.string_of("order.purchaseOrderId").unwrap_or_default();
let customer_order_id = json.string_of("order.customerOrderId").unwrap_or_default();
let seller_order_id = json.string_of("order.sellerOrderId").unwrap_or_default();
let customer_email_id = json.string_of("order.customerEmailId").unwrap_or_default();
let order_date = json.int_of("order.orderDate");
let phone = json.string_of("order.shippingInfo.phone").unwrap_or_default();
let estimated_delivery_date = json.int_of("order.shippingInfo.estimatedDeliveryDate");
let estimated_ship_date = json.int_of("order.shippingInfo.estimatedShipDate");
let method_code = json.string_of("order.shippingInfo.methodCode").unwrap_or_default();
let name = json.string_of("order.shippingInfo.postalAddress.name").unwrap_or_default();
let address1 = json.string_of("order.shippingInfo.postalAddress.address1").unwrap_or_default();
let city = json.string_of("order.shippingInfo.postalAddress.city").unwrap_or_default();
let state = json.string_of("order.shippingInfo.postalAddress.state").unwrap_or_default();
let postal_code = json.string_of("order.shippingInfo.postalAddress.postalCode").unwrap_or_default();
let country = json.string_of("order.shippingInfo.postalAddress.country").unwrap_or_default();
let address_type = json.string_of("order.shippingInfo.postalAddress.addressType").unwrap_or_default();
let mut i = 0;
let mut j = 0;
let count_i = json.size_of_array("order.orderLines.orderLine");
while i < count_i {
    json.set_i(i);
    let _ = json.string_of("order.orderLines.orderLine[i].lineNumber").unwrap_or_default();
    let _ = json.string_of("order.orderLines.orderLine[i].item.productName").unwrap_or_default();
    let _ = json.string_of("order.orderLines.orderLine[i].item.sku").unwrap_or_default();
    let _ = json.string_of("order.orderLines.orderLine[i].orderLineQuantity.unitOfMeasurement").unwrap_or_default();
    let _ = json.string_of("order.orderLines.orderLine[i].orderLineQuantity.amount").unwrap_or_default();
    let _ = json.int_of("order.orderLines.orderLine[i].statusDate");
    j = 0;
    count_j = json.size_of_array("order.orderLines.orderLine[i].charges.charge");
    while j < count_j {
        json.set_j(j);
        let _ = json.string_of("order.orderLines.orderLine[i].charges.charge[j].chargeType").unwrap_or_default();
        let _ = json.string_of("order.orderLines.orderLine[i].charges.charge[j].chargeName").unwrap_or_default();
        let _ = json.string_of("order.orderLines.orderLine[i].charges.charge[j].chargeAmount.currency").unwrap_or_default();
        let _ = json.int_of("order.orderLines.orderLine[i].charges.charge[j].chargeAmount.amount");
        let _ = json.string_of("order.orderLines.orderLine[i].charges.charge[j].tax.taxName").unwrap_or_default();
        let _ = json.string_of("order.orderLines.orderLine[i].charges.charge[j].tax.taxAmount.currency").unwrap_or_default();
        let _ = json.string_of("order.orderLines.orderLine[i].charges.charge[j].tax.taxAmount.amount").unwrap_or_default();
        j = j + 1;
    }

    j = 0;
    count_j = json.size_of_array("order.orderLines.orderLine[i].orderLineStatuses.orderLineStatus");
    while j < count_j {
        json.set_j(j);
        let _ = json.string_of("order.orderLines.orderLine[i].orderLineStatuses.orderLineStatus[j].status").unwrap_or_default();
        let _ = json.string_of("order.orderLines.orderLine[i].orderLineStatuses.orderLineStatus[j].statusQuantity.unitOfMeasurement").unwrap_or_default();
        let _ = json.string_of("order.orderLines.orderLine[i].orderLineStatuses.orderLineStatus[j].statusQuantity.amount").unwrap_or_default();
        let _ = json.int_of("order.orderLines.orderLine[i].orderLineStatuses.orderLineStatus[j].trackingInfo.shipDateTime");
        let _ = json.string_of("order.orderLines.orderLine[i].orderLineStatuses.orderLineStatus[j].trackingInfo.carrierName.carrier").unwrap_or_default();
        let _ = json.string_of("order.orderLines.orderLine[i].orderLineStatuses.orderLineStatus[j].trackingInfo.methodCode").unwrap_or_default();
        let _ = json.string_of("order.orderLines.orderLine[i].orderLineStatuses.orderLineStatus[j].trackingInfo.trackingNumber").unwrap_or_default();
        let _ = json.string_of("order.orderLines.orderLine[i].orderLineStatuses.orderLineStatus[j].trackingInfo.trackingURL").unwrap_or_default();
        let _ = json.string_of("order.orderLines.orderLine[i].orderLineStatuses.orderLineStatus[j].returnCenterAddress.name").unwrap_or_default();
        let _ = json.string_of("order.orderLines.orderLine[i].orderLineStatuses.orderLineStatus[j].returnCenterAddress.address1").unwrap_or_default();
        let _ = json.string_of("order.orderLines.orderLine[i].orderLineStatuses.orderLineStatus[j].returnCenterAddress.city").unwrap_or_default();
        let _ = json.string_of("order.orderLines.orderLine[i].orderLineStatuses.orderLineStatus[j].returnCenterAddress.state").unwrap_or_default();
        let _ = json.string_of("order.orderLines.orderLine[i].orderLineStatuses.orderLineStatus[j].returnCenterAddress.postalCode").unwrap_or_default();
        let _ = json.string_of("order.orderLines.orderLine[i].orderLineStatuses.orderLineStatus[j].returnCenterAddress.country").unwrap_or_default();
        let _ = json.string_of("order.orderLines.orderLine[i].orderLineStatuses.orderLineStatus[j].returnCenterAddress.dayPhone").unwrap_or_default();
        let _ = json.string_of("order.orderLines.orderLine[i].orderLineStatuses.orderLineStatus[j].returnCenterAddress.emailId").unwrap_or_default();
        j = j + 1;
    }

    i = i + 1;
}