Payload for creating an outbound order.

OutboundOrderCreationData

interface OutboundOrderCreationData {
    orderPreferences?: OrderAttribute[];
    packagesToOutbound?: DistributionPackageQuantity[];
    productsToOutbound?: ProductQuantity[];
}

Properties

orderPreferences?: OrderAttribute[]

Order preferences for the outbound order.

OutboundOrderCreationData

packagesToOutbound?: DistributionPackageQuantity[]

List of packages to be outbound.

OutboundOrderCreationData

productsToOutbound?: ProductQuantity[]

List of product units to be outbound.

OutboundOrderCreationData