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

    The request body schema for createOrder.

    interface CreateOrderRequest {
        channel?: string;
        destination: OrderDestination;
        fulfillmentConfiguration?: OrderFulfillmentConfiguration;
        lineItems: CreateOrderLineItem[];
        orderId: string;
        origin?: OrderOrigin;
        paymentInformation?: PaymentInformation;
    }
    Index
    channel?: string

    The sales channel of the fulfillment order.

    destination: OrderDestination
    fulfillmentConfiguration?: OrderFulfillmentConfiguration
    lineItems: CreateOrderLineItem[]

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

    orderId: string

    A fulfillment order identifier that the seller creates to track their fulfillment order. The orderId must be unique for each fulfillment order that a seller creates. If the seller's system already creates unique order identifiers, then these might be good values for them to use.

    origin?: OrderOrigin
    paymentInformation?: PaymentInformation