Selling Partner API SDK for JavaScript
    Preparing search index...

    The details of a shipment. Includes the shipment status.

    interface Shipment {
        AmazonOrderId: string;
        CreatedDate: string;
        Insurance: CurrencyAmount;
        ItemList: Item[];
        Label: Label;
        LastUpdatedDate?: string;
        PackageDimensions: PackageDimensions;
        SellerOrderId?: string;
        ShipFromAddress: Address;
        ShipmentId: string;
        ShippingService: ShippingService;
        ShipToAddress: Address;
        Status: ShipmentStatus;
        TrackingId?: string;
        Weight: Weight;
    }
    Index

    Properties

    AmazonOrderId: string

    An Amazon-defined order identifier, in 3-7-7 format.

    CreatedDate: string

    Date-time formatted timestamp.

    Insurance: CurrencyAmount
    ItemList: Item[]

    The list of items you want to include in a shipment.

    Label: Label
    LastUpdatedDate?: string

    Date-time formatted timestamp.

    PackageDimensions: PackageDimensions
    SellerOrderId?: string

    A seller-defined order identifier.

    ShipFromAddress: Address
    ShipmentId: string

    An Amazon-defined shipment identifier.

    ShippingService: ShippingService
    ShipToAddress: Address
    TrackingId?: string

    The shipment tracking identifier provided by the carrier.

    Weight: Weight