有没有办法通过REST API(http://devdocs.magento.com/swagger/index_20.html)为属性组分配属性?
我可以将属性组分配给属性集,但是没有找到属性组的属性分配属性。有什么想法吗?
答案 0 :(得分:2)
我知道这已经老了,但我想我会和谷歌的同事分享我的答案。在搜索检查属性是否已分配给组的方法时,我偶然发现了这个问题。如果有人有答案我很乐意听到它!
端点, CatalogProductAttributeManagementV1(https:// yourmagentohost .com / rest / {all | default} / V1 / products / attribute-sets / attributes),在Magento 2 Swagger Doc中描述为具有 POST 的方法,该方法将属性集分配给属性集。
但是,它没有提到它还使用 attributeGroupId 属性同时将属性分配给组:
实施说明
将属性分配给属性集
正文(POST中的内容)
{
"attributeSetId": 0,
"attributeGroupId": 0,
"attributeCode": "string",
"sortOrder": 0
}
响应
"integer as string?"