我可以通过woocommerce创建属性,比如Color 这些属性可以包含红色,绿色,白色等术语。稍后,您可以将这些属性添加到产品中。
我知道如何通过API添加这些属性,如下所述: http://woothemes.github.io/woocommerce-rest-api-docs/#create-a-product-attribute
我一直在搜索几个小时,但似乎没有办法在API中添加条款。我错过了什么吗?
答案 0 :(得分:0)
您使用更新A产品API here添加术语:
您发出了PUT请求:/wc-api/v3/products/<id>
在您发送的请求正文中:
{"product":{"categories":[...],"tages":[...]}}
答案 1 :(得分:0)
自WooCommerce 2.5以来,您有了添加属性术语的新端点。只需查看文档。
http://woothemes.github.io/woocommerce-rest-api-docs/#product-attribute-terms
例如,要为特定属性创建术语,您可以 POST 到端点
/wc-api/v3/products/attributes/<attribute_id>/terms
JSON消息:
{
"product_attribute_term": {
"name": "Black"
}
}
答案 2 :(得分:0)
它接受特性段/分类名称;只需使用这个:
example.com/wp-json/wc/v3/products?attribute=pa_compatible-for&attribute_term=249
我知道没有正确记录! 玩得开心。