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

    The request body schema for getOrderPreview.

    interface GetOrderPreviewRequest {
        channel?: string;
        destination: PreviewDestination;
        excludeEstimatedFees?: boolean;
        fulfillmentConfiguration?: PreviewFulfillmentConfiguration;
        includePaymentOnDelivery?: boolean;
        lineItems: PreviewLineItem[];
        origin?: OrderOrigin;
    }
    Index
    channel?: string

    The sales channel for the fulfillment request.

    destination: PreviewDestination
    excludeEstimatedFees?: boolean

    When true, excludes estimated fees from the preview response for latency optimization. Default: false.

    fulfillmentConfiguration?: PreviewFulfillmentConfiguration
    includePaymentOnDelivery?: boolean

    When true, includes payment on delivery information in the preview response. Default: false.

    lineItems: PreviewLineItem[]

    A list of items to include in the fulfillment preview, including quantity.

    origin?: OrderOrigin