This action updates the shippingAddress on the Order, but it does not change the shipping address on the referenced Cart from which the Order is created. Also, it does not recalculate the Cart as taxes may not fit to the shipping address anymore.

Produces the [Order Shipping Address Set](ctp:api:type:OrderShippingAddressSetMessage) Message.
interface StagedOrderSetShippingAddressAction {
    action: "setShippingAddress";
    address?: _BaseAddress;
}

Properties

Properties

action: "setShippingAddress"
address?: _BaseAddress

Value to set. If empty, any existing value is removed.