1


在我们创建了 productType 并有了它的 type id 之后,我们如何在 product create API 调用期间设置自定义属性。到目前为止,我正在做的是第一个,创建产品,然后更新自定义属性。但是,我无法使用必需的属性这样做。

4

1 回答 1

1

您可以在产品创建负载中提供所有自定义属性。示例 - 在这里,我为主变体上的属性品牌提供值,对于先前创建的产品类型,它指定有一个名为品牌的属性:

  {
  "productType": {
    "typeId": "product-type",
    "id": "6c06998a-c576-4a8d-8ace-dc306d70e1d1"
  },
  "name": {
    "en": "Some Product"
  },
  "slug": {
    "en": "product_slug_sdfsdfsdfdsdfsdfdssdf"
  },
  "masterVariant": {
    "prices": [{
      "value": {
        "centAmount": 2500,
        "currencyCode": "EUR"
      },
      "country": "US"
    }],
    "attributes": [{
      "name": "brand",
      "value": "Hugo Boss"
    }]
  },
  "variants": [{
    "prices": [{
      "value": {
        "centAmount": 2600,
        "currencyCode": "EUR"
      },
      "country": "US"
    }],
    "attributes": [{
      "name": "brand",
      "value": "Hugo Boss"
    }]
  }]
}
于 2015-09-16T08:34:42.180 回答