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

    A list of orders.

    interface SearchOrdersResponse {
        createdBefore?: string;
        lastUpdatedBefore?: string;
        orders: Order[];
        pagination?: Pagination;
    }
    Index

    Properties

    createdBefore?: string

    Only orders placed before the specified time are returned. The date must be in <a href='https://developer-docs.amazon.com/sp-api/docs/iso-8601\'>ISO 8601 format.

    lastUpdatedBefore?: string

    Only orders updated before the specified time are returned. The date must be in <a href='https://developer-docs.amazon.com/sp-api/docs/iso-8601\'>ISO 8601 format.

    orders: Order[]

    An array containing all orders that match the search criteria.

    pagination?: Pagination