Updating products for one of our customers is failing. We make a "PUT" call to resource https://fetch-haus.myshopify.com/admin/products/2584846341.json with following parameters, but get a an error response indicating that the option names are not unique. However they are unique as seen in the request.
Request:
Array
(
[product] => Array
(
[id] => 2584846341
[title] => Natures Variety Cat Ultimate Protein
[product_type] => Misc
[vendor] =>
[body_html] =>
[images] => Array
(
)
[options] => Array
(
[0] => Array
(
[name] => Formulas
)
[1] => Array
(
[name] => Size - Food
)
)
)
)
Response:
Array
(
[errors] => Array
(
[name] => Array
(
[0] => of Option is not unique
)
)
)
We are using https://github.com/cmcdonaldca/ohShopify.php PHP library method call.
Is there a way for you to track what is wrong with the request?