Typescript SDK Type Docs
    Preparing search index...

    Interface MyCustomerRemoveShippingAddressIdAction

    Removes an existing shipping address from shippingAddressIds. If the shipping address is the default shipping address, the defaultShippingAddressId is unset. Either addressId or addressKey is required.

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

    Hierarchy (View Summary)

    Index

    Properties

    action: "removeShippingAddressId"
    addressId?: string

    id of the Address to remove from shippingAddressIds.

    addressKey?: string

    key of the Address to remove from shippingAddressIds.