我在帐户注册时创建了几个自定义字段,如何使用API更新这些字段?
当我尝试提取客户数据时,我得到了“form_fields”的数组,但它允许我以相同的格式进行PUT。
{
"first_name": "Deepak",
"last_name": "Bandi",
"email": "bandideepakreddy@gmail.com",
"company": "",
"phone":"3123152269",
"store_credit":"",
"notes":"",
"tax_exempt_category":"",
"customer_group_id": 0,
"form_fields": [
{
"name": "Rep Id",
"value": "10025"
}
]
}
我确实在这里看到了类似的产品问题:How can I update custom fields using the BigCommerce API?
但同样的概念对客户无效。