Properties of packages

PackageDetail

interface PackageDetail {
    carrierCode: string;
    carrierName?: string;
    orderItems: ConfirmShipmentOrderItem[];
    packageReferenceId: string;
    shipDate: string;
    shipFromSupplySourceId?: string;
    shippingMethod?: string;
    trackingNumber: string;
}

Properties

carrierCode: string

Identifies the carrier that will deliver the package. This field is required for all marketplaces. For more information, refer to the CarrierCode announcement.

PackageDetail

carrierName?: string

Carrier Name that will deliver the package. Required when carrierCode is "Others"

PackageDetail

A list of order items.

PackageDetail

packageReferenceId: string

A seller-supplied identifier that uniquely identifies a package within the scope of an order. Only positive numeric values are supported.

PackageDetail

shipDate: string

The shipping date for the package. Must be in <a href='https://developer-docs.amazon.com/sp-api/docs/iso-8601\'>ISO 8601 date/time format.

PackageDetail

shipFromSupplySourceId?: string

The unique identifier for the supply source.

PackageDetail

shippingMethod?: string

Ship method to be used for shipping the order.

PackageDetail

trackingNumber: string

The tracking number used to obtain tracking and delivery information.

PackageDetail