Interface BusinessUnitRemoveShippingAddressIdAction

Removing a shipping address from a Business Unit generates a BusinessUnitShippingAddressRemoved Message.

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

Properties

action: "removeShippingAddressId"
addressId?: string

ID of the address to be removed from shippingAddressIds. Either addressId or addressKey is required.

addressKey?: string

Key of the address to be removed from shippingAddressIds. Either addressId or addressKey is required.

Generated using TypeDoc