Rust
Rust
Akeneo: Create New Product
See more HTTP Misc Examples
Demonstrates how to create a new product.Chilkat Rust Downloads
// This example requires the Chilkat API to have been previously unlocked.
// See Global Unlock Sample for sample code.
let http = chilkat::Http::new();
// Use your previously obtained access token.
// See Get Akeneo Access Token
http.set_auth_token("access_token");
// Build the following JSON to be sent in the request body:
// Use this online tool to generate the code from sample JSON:
// Generate Code to Create JSON
// {
// "identifier": "top",
// "enabled": true,
// "family": "tshirt",
// "categories": [
// "summer_collection"
// ],
// "groups": [],
// "parent": null,
// "values": {
// "name": [
// {
// "data": "Top",
// "locale": "en_US",
// "scope": null
// },
// {
// "data": "D�bardeur",
// "locale": "fr_FR",
// "scope": null
// }
// ],
// "description": [
// {
// "data": "Summer top",
// "locale": "en_US",
// "scope": "ecommerce"
// },
// {
// "data": "Top",
// "locale": "en_US",
// "scope": "tablet"
// },
// {
// "data": "D�bardeur pour l'�t�",
// "locale": "fr_FR",
// "scope": "ecommerce"
// },
// {
// "data": "D�bardeur",
// "locale": "fr_FR",
// "scope": "tablet"
// }
// ],
// "price": [
// {
// "locale": null,
// "scope": null,
// "data": [
// {
// "amount": "150.5",
// "currency": "EUR"
// },
// {
// "amount": "150",
// "currency": "USD"
// }
// ]
// }
// ],
// "color": [
// {
// "locale": null,
// "scope": null,
// "data": "black"
// }
// ],
// "size": [
// {
// "locale": null,
// "scope": null,
// "data": "m"
// }
// ]
// },
// "associations": {
// "PACK": {
// "products": [
// "sunglass"
// ],
// "groups": []
// }
// }
// }
//
let json = chilkat::JsonObject::new();
let _ = json.update_string("identifier", "top");
let _ = json.update_bool("enabled", true);
let _ = json.update_string("family", "tshirt");
let _ = json.update_string("categories[0]", "summer_collection");
let _ = json.update_new_array("groups");
let _ = json.update_null("parent");
let _ = json.update_string("values.name[0].data", "Top");
let _ = json.update_string("values.name[0].locale", "en_US");
let _ = json.update_null("values.name[0].scope");
let _ = json.update_string("values.name[1].data", "D�bardeur");
let _ = json.update_string("values.name[1].locale", "fr_FR");
let _ = json.update_null("values.name[1].scope");
let _ = json.update_string("values.description[0].data", "Summer top");
let _ = json.update_string("values.description[0].locale", "en_US");
let _ = json.update_string("values.description[0].scope", "ecommerce");
let _ = json.update_string("values.description[1].data", "Top");
let _ = json.update_string("values.description[1].locale", "en_US");
let _ = json.update_string("values.description[1].scope", "tablet");
let _ = json.update_string("values.description[2].data", "D�bardeur pour l'�t�");
let _ = json.update_string("values.description[2].locale", "fr_FR");
let _ = json.update_string("values.description[2].scope", "ecommerce");
let _ = json.update_string("values.description[3].data", "D�bardeur");
let _ = json.update_string("values.description[3].locale", "fr_FR");
let _ = json.update_string("values.description[3].scope", "tablet");
let _ = json.update_null("values.price[0].locale");
let _ = json.update_null("values.price[0].scope");
let _ = json.update_string("values.price[0].data[0].amount", "150.5");
let _ = json.update_string("values.price[0].data[0].currency", "EUR");
let _ = json.update_string("values.price[0].data[1].amount", "150");
let _ = json.update_string("values.price[0].data[1].currency", "USD");
let _ = json.update_null("values.color[0].locale");
let _ = json.update_null("values.color[0].scope");
let _ = json.update_string("values.color[0].data", "black");
let _ = json.update_null("values.size[0].locale");
let _ = json.update_null("values.size[0].scope");
let _ = json.update_string("values.size[0].data", "m");
let _ = json.update_string("associations.PACK.products[0]", "sunglass");
let _ = json.update_new_array("associations.PACK.groups");
json.set_emit_compact(false);
// Show the JSON to be sent..
println!("{}", json.emit().unwrap_or_default());
let url = "http://pim.my-akeneo-site.com/api/rest/v1/products".to_string();
let resp = chilkat::HttpResponse::new();
if http.http_json("POST", &url, &json, "application/json", &resp).is_err() {
println!("{}", http.last_error_text());
return;
}
println!("Response Status Code: {}", resp.status_code());
println!("Response Body: ");
println!("{}", resp.body_str());
// The akeneo response will include a "Location" header, such as the following:
// HTTP/1.1 201 Created
// Date: Tue, 22 Jan 2019 10:36:35 GMT
// Server: Apache/2
// X-Powered-By: PHP/7.1.25
// Cache-Control: max-age=0, private, must-revalidate, no-cache, private
// Set-Cookie: abcdefg; path=/; HttpOnly
// Location: http://xyz.example.com/api/rest/v1/products/L0000123
// Vary: User-Agent
// Content-Length: 0
// Keep-Alive: timeout=2, max=100
// Connection: Keep-Alive
// Content-Type: application/json
// Get the location header using resp.GetHeaderField
let location = resp.get_header_field("Location").unwrap_or_default();
println!("Location: {}", location);