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

    Request parameters for getOrders operation in VendorDirectFulfillmentOrdersApi.

    interface VendorDirectFulfillmentOrdersApiGetOrdersRequest {
        createdAfter: string;
        createdBefore: string;
        includeDetails?: boolean;
        limit?: number;
        nextToken?: string;
        shipFromPartyId?: string;
        sortOrder?: GetOrdersSortOrderEnum;
        status?: GetOrdersStatusEnum;
    }
    Index

    Properties

    createdAfter: string

    Purchase orders that became available after this date and time will be included in the result. Must be in ISO-8601 date/time format.

    createdBefore: string

    Purchase orders that became available before this date and time will be included in the result. Must be in ISO-8601 date/time format.

    includeDetails?: boolean

    When true, returns the complete purchase order details. Otherwise, only purchase order numbers are returned.

    limit?: number

    The limit to the number of purchase orders returned.

    nextToken?: string

    Used for pagination when there are more orders than the specified result size limit. The token value is returned in the previous API call.

    shipFromPartyId?: string

    The vendor warehouse identifier for the fulfillment warehouse. If not specified, the result will contain orders for all warehouses.

    Sort the list in ascending or descending order by order creation date.

    Returns only the purchase orders that match the specified status. If not specified, the result will contain orders that match any status.