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

eBay -- Create or Replace Inventory Item

See more eBay Examples

This example shows how to create a new inventory item record or update an existing inventory item record.

See Create or Replace Inventory Item for more REST API details.

Chilkat Rust Downloads

Rust

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

// This example sends the following sample PUT request to create (or replace) a new inventory item.

// PUT https://api.ebay.com/sell/inventory/v1/inventory_item/GP-Cam-01
// { 
// "availability":
//     { 
//     "shipToLocationAvailability":
//         { 
//         "quantity": 50
//         }
//     },
// "condition": "NEW",
// "product":
//     { 
//     "title": "GoPro Hero4 Helmet Cam",
//     "description": "New GoPro Hero4 Helmet Cam. Unopened box.",
//     "aspects": {
//         "Brand" :["GoPro"],
//         "Type" : ["Helmet/Action"],
//         "Storage Type" : ["Removable"],
//         "Recording Definition" : ["High Definition"],
//         "Media Format" : ["Flash Drive (SSD)"],
//         "Optical Zoom" : ["10x"]
//       },
//     "imageUrls": [
//         "http://i.ebayimg.com/images/i/182196556219-0-1/s-l1000.jpg",
//         "http://i.ebayimg.com/images/i/182196556219-0-1/s-l1001.jpg",
//         "http://i.ebayimg.com/images/i/182196556219-0-1/s-l1002.jpg"
//       ]
//     }
// }

// First, generate the JSON using this code:
let json = chilkat::JsonObject::new();
json.set_emit_compact(false);

let _ = json.update_number("availability.shipToLocationAvailability.quantity", "50");
let _ = json.update_string("condition", "NEW");
let _ = json.update_string("product.title", "GoPro Hero4 Helmet Cam");
let _ = json.update_string("product.description", "New GoPro Hero4 Helmet Cam. Unopened box.");
let _ = json.update_string("product.aspects.Brand[0]", "GoPro");
let _ = json.update_string("product.aspects.Type[0]", "Helmet/Action");
let _ = json.update_string("product.aspects.\"Storage Type\"[0]", "Removable");
let _ = json.update_string("product.aspects.\"Recording Definition\"[0]", "High Definition");
let _ = json.update_string("product.aspects.\"Media Format\"[0]", "Flash Drive (SSD)");
let _ = json.update_string("product.aspects.\"Optical Zoom\"[0]", "10x");
let _ = json.update_string("product.imageUrls[0]", "http://i.ebayimg.com/images/i/182196556219-0-1/s-l1000.jpg");
let _ = json.update_string("product.imageUrls[1]", "http://i.ebayimg.com/images/i/182196556219-0-1/s-l1001.jpg");
let _ = json.update_string("product.imageUrls[2]", "http://i.ebayimg.com/images/i/182196556219-0-1/s-l1002.jpg");

// Show the JSON to be sent:
println!("{}", json.emit().unwrap_or_default());

// Use a previously obtained user token.  The token should look something like this:
// "v^1.1#i^1#r^0#p^3#I^3#f^0#t^H4sIAAAAAAAAAOVXa2wUVRTu9k ... 89xuCWYREAAA=="
let access_token = "EBAY_ACCESS_TOKEN".to_string();

let http = chilkat::Http::new();

// This example uses the sandbox.  
// Change "api.sandbox.ebay.com" to "api.ebay.com" to use the production system.
// Note: The last part of the url is the SKU.  In this URL, the SKU is "GP-Cam-01".
let url = "https://api.sandbox.ebay.com/sell/inventory/v1/inventory_item/GP-Cam-01".to_string();
json.set_emit_compact(true);

// Set your Content-Language to whatever is desired.
http.set_request_header("Content-Language", "en-US");

// Add our access token to the request, which is a header
// having the following format:
// Authorization: Bearer <userAccessToken>
let sb_auth = chilkat::StringBuilder::new();
let _ = sb_auth.append("Bearer ");
let _ = sb_auth.append(&access_token);
http.set_request_header("Authorization", &sb_auth.get_as_string().unwrap_or_default());

http.set_accept("application/json");
http.set_allow_gzip(false);

let resp = chilkat::HttpResponse::new();
if http.http_str("PUT", &url, &json.emit().unwrap_or_default(), "utf-8", "application/json", &resp).is_err() {
    println!("{}", http.last_error_text());
    return;
}

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

if http.last_status() != 204 {
    println!("{}", resp.body_str());
    println!("Failed");
    return;
}

// On success (status code = 204), there is no output payload (strResponse will be empty).
println!("Inventory item successfully created.");