Removing the address from a Business Unit generates the BusinessUnitAddressRemoved Message.

interface BusinessUnitRemoveAddressAction {
    action: "removeAddress";
    addressId?: string;
    addressKey?: string;
}

Properties

action: "removeAddress"
addressId?: string

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

addressKey?: string

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

Generated using TypeDoc