Removing an address of the Customer produces the CustomerAddressRemoved Message.

Either `addressId` or `addressKey` is required.
interface MyCustomerRemoveAddressAction {
    action: "removeAddress";
    addressId?: string;
    addressKey?: string;
}

Properties

action: "removeAddress"
addressId?: string

id of the Address to remove.

addressKey?: string

key of the Address to remove.

Generated using TypeDoc