JSON API
...
Examples
Partial Updates (Patch)
Attributes
1min
patching specific attributes for a list of products request body { "item001" \[ { "op" "replace", "path" "/attributes", "value" { "name" { "default" "comfortable chair item001" }, "price" { "usd" { "saleprice" 50 00, "defaultprice" 70 00, "toprice" 70 00, "startprice" 50 00 }, "gbp" { "saleprice" 50 00 } } } } ], "item002" \[ { "op" "replace", "path" "/attributes/name", "value" { "default" "comfortable chair item002" } } ] } patching attribute with a specific locale for a given product request body { "item001" \[ { "op" "add", "path" "/attributes/description/default", "value" "comfortable chair item001" }, { "op" "add", "path" "/attributes/shortdescription/default", "value" "comfortable chair item001" } ] }