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

Akeneo: Create New Attribute Group

See more HTTP Misc Examples

Demonstrates how to create a new attribute group.

Chilkat Rust Downloads

Rust

// 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

// {
//   "code": "marketing",
// }

let json = chilkat::JsonObject::new();
let _ = json.update_string("code", "marketing");

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/attribute-groups".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;
}

// Success is a 201 response status code with an empty body.
println!("Response Status Code: {}", resp.status_code());
println!("Response Body: ");
println!("{}", resp.body_str());