如何使用size作为选项及其值为产品添加重复的sku

时间:2016-12-08 05:35:18

标签: api laravel-5.2 bigcommerce

这是我的代码

$fields = array("sku" => "TestM-F", "options" => ["product_option_id" => 330,"option_value_id" => 255 ]);
$isCreated = $this->store->createSku($fields);
$error = $this->store->getLastError();
print_r($error);
print_r($isCreated); 

我收到这样的错误

[status] => 404
[message] => The requested resource was not found.

product_option_id& option_value_id已经存在于表中。 TestM sku已经存在,但我想用TestM-F这个新名称创建另一个sku,并使用相同的product_option_id& option_value_id。 (重复)。

1 个答案:

答案 0 :(得分:0)

尝试使用

 return Client::createResource('/products/' . $this->product_id . '/skus', $this->getCreateFields());