Rust
Rust
Shopify Add a metafield to an existing product
See more Shopify Examples
Add a metafield to an existing productChilkat Rust Downloads
let rest = chilkat::Rest::new();
let _ = rest.set_auth_basic("SHOPIFY_PRIVATE_API_KEY", "SHOPIFY_PRIVATE_API_KEY");
if rest.connect("chilkat.myshopify.com", 443, true, true).is_err() {
println!("{}", rest.last_error_text());
return;
}
// The following code creates the JSON request body.
// The JSON created by this code is shown below.
let json_req = chilkat::JsonObject::new();
let _ = json_req.update_number("product.id", "632910392");
let _ = json_req.update_string("product.metafields[0].key", "new");
let _ = json_req.update_string("product.metafields[0].value", "newvalue");
let _ = json_req.update_string("product.metafields[0].value_type", "string");
let _ = json_req.update_string("product.metafields[0].namespace", "global");
// The JSON request body created by the above code:
// {
// "product": {
// "id": 632910392,
// "metafields": [
// {
// "key": "new",
// "value": "newvalue",
// "value_type": "string",
// "namespace": "global"
// }
// ]
// }
// }
let sb_req = chilkat::StringBuilder::new();
let _ = json_req.emit_sb(&sb_req);
let _ = rest.add_header("Content-Type", "application/json");
let sb_json = chilkat::StringBuilder::new();
if rest.full_request_sb("PUT", "/admin/products/#{id}.json", &sb_req, &sb_json).is_err() {
println!("{}", rest.last_error_text());
return;
}
if rest.response_status_code() != 200 {
println!("Received error response code: {}", rest.response_status_code());
println!("Response body:");
println!("{}", sb_json.get_as_string().unwrap_or_default());
return;
}
let json = chilkat::JsonObject::new();
let _ = json.load_sb(&sb_json);
// The following code parses the JSON response.
// A sample JSON response is shown below the sample code.
let product_id: i32 = 0;
let mut i: i32 = 0;
let mut count_i: i32 = 0;
let mut product_id: i32 = 0;
let mut j: i32 = 0;
let mut count_j: i32 = 0;
product_id = json.int_of("product.id");
let product_title = json.string_of("product.title").unwrap_or_default();
let product_body_html = json.string_of("product.body_html").unwrap_or_default();
let product_vendor = json.string_of("product.vendor").unwrap_or_default();
let product_product_type = json.string_of("product.product_type").unwrap_or_default();
let product_created_at = json.string_of("product.created_at").unwrap_or_default();
let product_handle = json.string_of("product.handle").unwrap_or_default();
let product_updated_at = json.string_of("product.updated_at").unwrap_or_default();
let product_published_at = json.string_of("product.published_at").unwrap_or_default();
let product_template_suffix = json.is_null_of("product.template_suffix");
let product_published_scope = json.string_of("product.published_scope").unwrap_or_default();
let product_tags = json.string_of("product.tags").unwrap_or_default();
let product_image_id = json.int_of("product.image.id");
let product_image_product_id = json.int_of("product.image.product_id");
let product_image_position = json.int_of("product.image.position");
let product_image_created_at = json.string_of("product.image.created_at").unwrap_or_default();
let product_image_updated_at = json.string_of("product.image.updated_at").unwrap_or_default();
let product_image_width = json.int_of("product.image.width");
let product_image_height = json.int_of("product.image.height");
let product_image_src = json.string_of("product.image.src").unwrap_or_default();
i = 0;
count_i = json.size_of_array("product.variants");
while i < count_i {
json.set_i(i);
let _ = json.int_of("product.variants[i].id");
product_id = json.int_of("product.variants[i].product_id");
let _ = json.string_of("product.variants[i].title").unwrap_or_default();
let _ = json.string_of("product.variants[i].price").unwrap_or_default();
let _ = json.string_of("product.variants[i].sku").unwrap_or_default();
let _ = json.int_of("product.variants[i].position");
let _ = json.int_of("product.variants[i].grams");
let _ = json.string_of("product.variants[i].inventory_policy").unwrap_or_default();
let _ = json.is_null_of("product.variants[i].compare_at_price");
let _ = json.string_of("product.variants[i].fulfillment_service").unwrap_or_default();
let _ = json.string_of("product.variants[i].inventory_management").unwrap_or_default();
let _ = json.string_of("product.variants[i].option1").unwrap_or_default();
let _ = json.is_null_of("product.variants[i].option2");
let _ = json.is_null_of("product.variants[i].option3");
let _ = json.string_of("product.variants[i].created_at").unwrap_or_default();
let _ = json.string_of("product.variants[i].updated_at").unwrap_or_default();
let _ = json.bool_of("product.variants[i].taxable");
let _ = json.string_of("product.variants[i].barcode").unwrap_or_default();
let _ = json.int_of("product.variants[i].image_id");
let _ = json.int_of("product.variants[i].inventory_quantity");
let _ = json.int_of("product.variants[i].weight");
let _ = json.string_of("product.variants[i].weight_unit").unwrap_or_default();
let _ = json.int_of("product.variants[i].old_inventory_quantity");
let _ = json.bool_of("product.variants[i].requires_shipping");
i = i + 1;
}
i = 0;
count_i = json.size_of_array("product.options");
while i < count_i {
json.set_i(i);
let _ = json.int_of("product.options[i].id");
product_id = json.int_of("product.options[i].product_id");
let _ = json.string_of("product.options[i].name").unwrap_or_default();
let _ = json.int_of("product.options[i].position");
j = 0;
count_j = json.size_of_array("product.options[i].values");
while j < count_j {
json.set_j(j);
let _ = json.string_of("product.options[i].values[j]").unwrap_or_default();
j = j + 1;
}
i = i + 1;
}
i = 0;
count_i = json.size_of_array("product.images");
while i < count_i {
json.set_i(i);
let _ = json.int_of("product.images[i].id");
product_id = json.int_of("product.images[i].product_id");
let _ = json.int_of("product.images[i].position");
let _ = json.string_of("product.images[i].created_at").unwrap_or_default();
let _ = json.string_of("product.images[i].updated_at").unwrap_or_default();
let _ = json.int_of("product.images[i].width");
let _ = json.int_of("product.images[i].height");
let _ = json.string_of("product.images[i].src").unwrap_or_default();
j = 0;
count_j = json.size_of_array("product.images[i].variant_ids");
while j < count_j {
json.set_j(j);
let _ = json.int_of("product.images[i].variant_ids[j]");
j = j + 1;
}
i = i + 1;
}
i = 0;
count_i = json.size_of_array("image.product.variant_ids");
while i < count_i {
json.set_i(i);
i = i + 1;
}
// A sample JSON response body that is parsed by the above code:
// {
// "product": {
// "id": 632910392,
// "title": "IPod Nano - 8GB",
// "body_html": "<p>It's the small iPod with one very big idea: Video. Now the world's most popular music player, available in 4GB and 8GB models, lets you enjoy TV shows, movies, video podcasts, and more. The larger, brighter display means amazing picture quality. In six eye-catching colors, iPod nano is stunning all around. And with models starting at just $149, little speaks volumes.<\/p>",
// "vendor": "Apple",
// "product_type": "Cult Products",
// "created_at": "2017-09-22T14:08:02-04:00",
// "handle": "ipod-nano",
// "updated_at": "2017-09-22T14:48:57-04:00",
// "published_at": "2007-12-31T19:00:00-05:00",
// "template_suffix": null,
// "published_scope": "web",
// "tags": "Emotive, Flash Memory, MP3, Music",
// "variants": [
// {
// "id": 808950810,
// "product_id": 632910392,
// "title": "Pink",
// "price": "199.00",
// "sku": "IPOD2008PINK",
// "position": 1,
// "grams": 567,
// "inventory_policy": "continue",
// "compare_at_price": null,
// "fulfillment_service": "manual",
// "inventory_management": "shopify",
// "option1": "Pink",
// "option2": null,
// "option3": null,
// "created_at": "2017-09-22T14:08:02-04:00",
// "updated_at": "2017-09-22T14:48:57-04:00",
// "taxable": true,
// "barcode": "1234_pink",
// "image_id": 562641783,
// "inventory_quantity": 10,
// "weight": 1.25,
// "weight_unit": "lb",
// "old_inventory_quantity": 10,
// "requires_shipping": true
// },
// {
// "id": 49148385,
// "product_id": 632910392,
// "title": "Red",
// "price": "199.00",
// "sku": "IPOD2008RED",
// "position": 2,
// "grams": 567,
// "inventory_policy": "continue",
// "compare_at_price": null,
// "fulfillment_service": "manual",
// "inventory_management": "shopify",
// "option1": "Red",
// "option2": null,
// "option3": null,
// "created_at": "2017-09-22T14:08:02-04:00",
// "updated_at": "2017-09-22T14:08:02-04:00",
// "taxable": true,
// "barcode": "1234_red",
// "image_id": null,
// "inventory_quantity": 20,
// "weight": 1.25,
// "weight_unit": "lb",
// "old_inventory_quantity": 20,
// "requires_shipping": true
// },
// {
// "id": 39072856,
// "product_id": 632910392,
// "title": "Green",
// "price": "199.00",
// "sku": "IPOD2008GREEN",
// "position": 3,
// "grams": 567,
// "inventory_policy": "continue",
// "compare_at_price": null,
// "fulfillment_service": "manual",
// "inventory_management": "shopify",
// "option1": "Green",
// "option2": null,
// "option3": null,
// "created_at": "2017-09-22T14:08:02-04:00",
// "updated_at": "2017-09-22T14:08:02-04:00",
// "taxable": true,
// "barcode": "1234_green",
// "image_id": null,
// "inventory_quantity": 30,
// "weight": 1.25,
// "weight_unit": "lb",
// "old_inventory_quantity": 30,
// "requires_shipping": true
// },
// {
// "id": 457924702,
// "product_id": 632910392,
// "title": "Black",
// "price": "199.00",
// "sku": "IPOD2008BLACK",
// "position": 4,
// "grams": 567,
// "inventory_policy": "continue",
// "compare_at_price": null,
// "fulfillment_service": "manual",
// "inventory_management": "shopify",
// "option1": "Black",
// "option2": null,
// "option3": null,
// "created_at": "2017-09-22T14:08:02-04:00",
// "updated_at": "2017-09-22T14:08:02-04:00",
// "taxable": true,
// "barcode": "1234_black",
// "image_id": null,
// "inventory_quantity": 40,
// "weight": 1.25,
// "weight_unit": "lb",
// "old_inventory_quantity": 40,
// "requires_shipping": true
// }
// ],
// "options": [
// {
// "id": 594680422,
// "product_id": 632910392,
// "name": "Color",
// "position": 1,
// "values": [
// "Pink",
// "Red",
// "Green",
// "Black"
// ]
// }
// ],
// "images": [
// {
// "id": 850703190,
// "product_id": 632910392,
// "position": 1,
// "created_at": "2017-09-22T14:08:02-04:00",
// "updated_at": "2017-09-22T14:08:02-04:00",
// "width": 123,
// "height": 456,
// "src": "https:\/\/cdn.shopify.com\/s\/files\/1\/0006\/9093\/3842\/products\/ipod-nano.png?v=1506103682",
// "variant_ids": [
// ]
// },
// {
// "id": 562641783,
// "product_id": 632910392,
// "position": 2,
// "created_at": "2017-09-22T14:08:02-04:00",
// "updated_at": "2017-09-22T14:08:02-04:00",
// "width": 123,
// "height": 456,
// "src": "https:\/\/cdn.shopify.com\/s\/files\/1\/0006\/9093\/3842\/products\/ipod-nano-2.png?v=1506103682",
// "variant_ids": [
// 808950810
// ]
// }
// ],
// "image": {
// "id": 850703190,
// "product_id": 632910392,
// "position": 1,
// "created_at": "2017-09-22T14:08:02-04:00",
// "updated_at": "2017-09-22T14:08:02-04:00",
// "width": 123,
// "height": 456,
// "src": "https:\/\/cdn.shopify.com\/s\/files\/1\/0006\/9093\/3842\/products\/ipod-nano.png?v=1506103682",
// "variant_ids": [
// ]
// }
// }
// }
println!("Example Completed.");