WooCommerce动态定价插件API

时间:2018-01-24 19:41:29

标签: wordpress rest woocommerce

我目前正在使用WooCommerce Dynamic Pricing plugin,并尝试通过API添加一些基本定价组。我还没有找到关于API的任何信息,所以我希望某个地方可以引导我朝着正确的方向前进。

目前只是尝试在元键中添加值,但似乎没有添加任何内容。

所有我想要做的就是在产品上创建一个基本定价组,但坚持试图找到API letalone的任何信息如何应用它

任何提示非常感谢

{
  "data": {
    "name": "Test Product",
    "type": "simple",
    "backorders_allowed": "true",
    "managing_stock": "true",
    "stock_quantity": " 0",
    "in_stock": "true",
    "sku": " #992875",
    "weight": " 0.16",
    "height": " ",
    "width": " ",
    "depth": " ",
    "regular_price": " 137.35",
    "sale_price": " ",
    "description": "A short Description of the item",
    "short_description": "Long Description of the item",
    "meta": [
    {
        "key":"pricing_rules",
        "value":"unauthenticated"
    }
    ],
    "categories": [
      {
        "name": "Equipment"
      }
    ],
    "variations": []
  }
}

1 个答案:

答案 0 :(得分:0)

解决了。

我所要做的就是获取一个已填充所有参数的现有项目,然后使用它们并将它们重新发布,因为它提供了所有键。

删除密钥ID可确保创建一组新记录。