Interface CustomerRemoveShippingAddressIdAction

Removes a shipping address from shippingAddressesIds. If the shipping address is the default shipping address, the defaultShippingAddressId is unset. Either addressId or addressKey is required.

interface CustomerRemoveShippingAddressIdAction {
    action: "removeShippingAddressId";
    addressId?: string;
    addressKey?: string;
}

Properties

action: "removeShippingAddressId"
addressId?: string

id of the Address to remove from shippingAddressesIds.

addressKey?: string

key of the Address to remove from shippingAddressesIds.

Generated using TypeDoc