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

    Information about a physical shipping package, including tracking details. Note: Only available for merchant-fulfilled (FBM) orders.

    interface OrderPackage {
        carrier?: string;
        createdTime?: string;
        packageItems?: PackageItem[];
        packageReferenceId: string;
        packageStatus?: PackageStatus;
        shipFromAddress?: MerchantAddress;
        shippingService?: string;
        shipTime?: string;
        trackingNumber?: string;
    }
    Index

    Properties

    carrier?: string

    The carrier responsible for transporting this package to the customer.

    createdTime?: string

    The exact time when this shipping package was created and prepared for shipment. In ISO 8601 format.

    packageItems?: PackageItem[]

    A list of all order items included in this specific package.

    packageReferenceId: string

    A unique identifier for this package within the context of the order.

    packageStatus?: PackageStatus
    shipFromAddress?: MerchantAddress
    shippingService?: string

    The specific shipping method or service used for delivering this package.

    shipTime?: string

    The exact time when this package was handed over to the carrier and began its journey to the customer. In ISO 8601 format.

    trackingNumber?: string

    The carrier-provided tracking number that customers can use to monitor the package's delivery progress.