Represents an AWD inbound shipment.

InboundShipment

interface InboundShipment {
    carrierCode?: CarrierCode;
    createdAt?: string;
    destinationAddress: Address;
    destinationRegion?: string;
    externalReferenceId?: string;
    orderId: string;
    originAddress: Address;
    receivedQuantity?: InventoryQuantity[];
    shipBy?: string;
    shipmentContainerQuantities: DistributionPackageQuantity[];
    shipmentId: string;
    shipmentSkuQuantities?: SkuQuantity[];
    shipmentStatus: InboundShipmentStatus;
    trackingId?: string;
    updatedAt?: string;
    warehouseReferenceId?: string;
}

Properties

carrierCode?: CarrierCode

InboundShipment

createdAt?: string

Timestamp when the shipment was created. The date is returned in <a href='https://developer-docs.amazon.com/sp-api/docs/iso-8601\'>ISO 8601 format.

InboundShipment

destinationAddress: Address

InboundShipment

destinationRegion?: string

Assigned region where the order will be shipped. This can differ from what was passed as preference. AWD currently supports following region IDs: [us-west, us-east]

InboundShipment

externalReferenceId?: string

Client-provided reference ID that can correlate this shipment to client resources. For example, to map this shipment to an internal bookkeeping order record.

InboundShipment

orderId: string

The AWD inbound order ID that this inbound shipment belongs to.

InboundShipment

originAddress: Address

InboundShipment

receivedQuantity?: InventoryQuantity[]

Quantity received (at the receiving end) as part of this shipment.

InboundShipment

shipBy?: string

Timestamp when the shipment will be shipped.

InboundShipment

shipmentContainerQuantities: DistributionPackageQuantity[]

Packages that are part of this shipment.

InboundShipment

shipmentId: string

Unique shipment ID.

InboundShipment

shipmentSkuQuantities?: SkuQuantity[]

Quantity details at SKU level for the shipment. This attribute will only appear if the skuQuantities parameter in the request is set to SHOW.

InboundShipment

shipmentStatus: InboundShipmentStatus

InboundShipment

trackingId?: string

Carrier-unique tracking ID for this shipment.

InboundShipment

updatedAt?: string

Timestamp when the shipment was updated. The date is returned in <a href='https://developer-docs.amazon.com/sp-api/docs/iso-8601\'>ISO 8601 format.

InboundShipment

warehouseReferenceId?: string

An AWD-provided reference ID that you can use to interact with the warehouse. For example, a carrier appointment booking.

InboundShipment