Amazon Selling Partner API (SP-API) SDK for TypeScript
    Preparing search index...

    Delivery and item information for a shipment in a fulfillment order.

    interface Shipment {
        amazonFacility: AmazonFacility;
        amazonShipmentId: string;
        deliveryTime?: string;
        items: ShipmentItem[];
        packages?: Package[];
        serviceLevel?: ShipmentServiceLevel;
        shippingNotes?: string[];
        shipTime?: string;
        status: string;
    }
    Index
    amazonFacility: AmazonFacility
    amazonShipmentId: string

    A shipment identifier assigned by Amazon.

    deliveryTime?: string

    Date timestamp in ISO 8601 date time format.

    items: ShipmentItem[]

    An array of fulfillment shipment item information.

    packages?: Package[]

    An array of fulfillment shipment package information.

    serviceLevel?: ShipmentServiceLevel
    shippingNotes?: string[]

    Provides additional insight into shipment timeline. Primarily used to communicate that actual delivery dates aren't available.

    shipTime?: string

    Date timestamp in ISO 8601 date time format.

    status: string

    The current status of the shipment. Possible values: PROCESSING, SHIPPED, CANCELLED.