The details of a shipment, including the shipment status.

Export

Shipment

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

Properties

AmazonOrderId: string

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

Memberof

Shipment

CreatedDate: string

Memberof

Shipment

Insurance: CurrencyAmount

Memberof

Shipment

ItemList: Item[]

The list of items to be included in a shipment.

Memberof

Shipment

Label: Label

Memberof

Shipment

LastUpdatedDate?: string

Memberof

Shipment

PackageDimensions: PackageDimensions

Memberof

Shipment

SellerOrderId?: string

A seller-defined order identifier.

Memberof

Shipment

ShipFromAddress: Address

Memberof

Shipment

ShipToAddress: Address

Memberof

Shipment

ShipmentId: string

An Amazon-defined shipment identifier.

Memberof

Shipment

ShippingService: ShippingService

Memberof

Shipment

Memberof

Shipment

TrackingId?: string

The shipment tracking identifier provided by the carrier.

Memberof

Shipment

Weight: Weight

Memberof

Shipment