Magento 2 REST API客户自定义属性

时间:2017-09-16 13:25:01

标签: rest api magento magento2

Magento 2 REST API文档介绍了在更新或创建客户时为其设置custom_attributes的方法。 http://devdocs.magento.com/swagger/index_20.html#/

不幸的是我无法让这个工作......

我的POST和PUT JSON请求数据是:

{
    "customer": {
        "custom_attributes": [
            {
                "attribute_code": "firstname",
                "value": "TEST"
            }
        ],
        "email": "someone@exaxmple.com",
        "extension_attributes": [],
        "firstname": "Someone",
        "gender": null,
        "lastname": "Else",
        "middlename": null,
        "taxvat": null,
        "website_id": "1"
    }
}

创建了客户,但名字不是" TEST"。 是否有人有同样的问题并修复它?请让我知道如何。

1 个答案:

答案 0 :(得分:2)

我最好的猜测是,由于Firstname是现有的Out-Of-The-Box属性,因此OOTB属性名称 - 值映射分配将优先。

你可以再试一次,使用一个独特的自定义属性名称(即不会与OOTB属性名称冲突的东西)

您需要先定义自定义客户属性,然后才能使用M2 API对该自定义客户属性执行操作。

此StackExchange线程 - https://magento.stackexchange.com/questions/88245/magento2-create-a-customer-custom-attribute - 提供了有关如何设置自定义客户属性的其他信息。