Interface MyBusinessUnitRemoveShippingAddressIdAction

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

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

Properties

action: "removeShippingAddressId"
addressId?: string

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

addressKey?: string

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

Generated using TypeDoc