現在、顧客から電子メールまたは電話番号を削除する方法は、保存したい電子メールで顧客オブジェクトを更新することです。例えば
、あなたはのように見える、顧客のオブジェクトがある場合:あなたはhome
に関連付けられた電子メールを削除したい場合には
{
"data": {
"type": "customer",
"id": "58863fe94aa1701100efcb1d",
"attributes": {
"name": "Joe Cornelius Schmoe III",
"displayName": "Joe Cornelius Schmoe III",
"displayColor": "teal",
"displayIcon": "broom",
"externalId": "user-3",
"externalIds": [
{
"externalId": "user-3",
"verified": true
}
],
"firstName": "Joe",
"lastName": "Schmoe",
"sharedExternalIds": [],
"emails": [
{
"email": "[email protected]",
"verified": false,
"type": "home"
},
{
"email": "[email protected]",
"verified": false,
"type": "home"
}
],
....
}
を(phones
アレイのと同じように動作します。)
{}はcustomerId
{
"emails": [
{
"email": "[email protected]",
"verified": false,
"type": "home"
}
]
}
のみ指定した電子が含まれるように
PUT/V1 /顧客/顧客記録は、現在更新されます郵便物。
{
"data": {
"type": "customer",
"id": "58863fe94aa1701100efcb1d",
"attributes": {
"name": "Joe Cornelius Schmoe III",
"displayName": "Joe Cornelius Schmoe III",
"displayColor": "teal",
"displayIcon": "broom",
"externalId": "user-3",
"externalIds": [
{
"externalId": "user-3",
"verified": true,
"id": null
}
],
"firstName": "Joe",
"lastName": "Schmoe",
"sharedExternalIds": [],
"emails": [
{
"email": "[email protected]",
"verified": false,
"type": "home",
"id": null
}
]
.....
}