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

    General information about a fulfillment order, including its status.

    interface FulfillmentOrder {
        channel?: string;
        destination?: OrderDestination;
        fulfillmentConfiguration?: OrderResponseFulfillmentConfiguration;
        lineItems: OrderLineItem[];
        orderId: string;
        origin?: OrderOrigin;
        paymentInformation?: PaymentInformation;
        receiveTime: string;
        shipments?: Shipment[];
        status?: string;
        statusUpdateTime?: string;
    }
    Index
    channel?: string

    The sales channel for the fulfillment order.

    destination?: OrderDestination
    fulfillmentConfiguration?: OrderResponseFulfillmentConfiguration
    lineItems: OrderLineItem[]

    A list of items in the fulfillment order.

    orderId: string

    The fulfillment order identifier submitted with the createOrder operation.

    origin?: OrderOrigin
    paymentInformation?: PaymentInformation
    receiveTime: string

    Date timestamp in ISO 8601 date time format.

    shipments?: Shipment[]

    An array of fulfillment shipment information.

    status?: string

    The current status of the fulfillment order. Possible values: PROCESSING, COMPLETE, COMPLETE_PARTIAL, CANCELLED, UNFULFILLABLE, INVALID.

    statusUpdateTime?: string

    Date timestamp in ISO 8601 date time format.