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

    A list of orders along with additional information to make subsequent API calls.

    interface OrdersList {
        CreatedBefore?: string;
        LastUpdatedBefore?: string;
        NextToken?: string;
        Orders: Order[];
    }
    Index

    Properties

    CreatedBefore?: string

    Use this date to select orders created before (or at) a specified time. Only orders placed before the specified time are returned. The date must be in ISO 8601 format.

    LastUpdatedBefore?: string

    Use this date to select orders that were last updated before (or at) a specified time. An update is defined as any change in order status, including the creation of a new order. Includes updates made by Amazon and by the seller. Use ISO 8601 format for all dates.

    NextToken?: string

    When present and not empty, pass this string token in the next request to return the next response page.

    Orders: Order[]

    A list of orders.