Payload for creating an inbound order.

InboundOrderCreationData

interface InboundOrderCreationData {
    externalReferenceId?: string;
    originAddress: Address;
    packagesToInbound: DistributionPackageQuantity[];
    preferences?: InboundPreferences;
    shipBy?: string;
}

Properties

externalReferenceId?: string

Reference ID that can be used to correlate the order with partner resources.

InboundOrderCreationData

originAddress: Address

InboundOrderCreationData

packagesToInbound: DistributionPackageQuantity[]

List of packages to be inbounded.

InboundOrderCreationData

preferences?: InboundPreferences

InboundOrderCreationData

shipBy?: string

Estimated date by when goods have to be picked up.

InboundOrderCreationData