sellercloud_search_orders
Search orders created within a date range. Specify start and end dates (YYYY-MM-DD) to retrieve orders, with optional company scope, free-text query, and pagination up to 1000 records.
Instructions
Search orders created in the inclusive [date_from, date_to] window.
Args: date_from: ISO date (YYYY-MM-DD), start of window. date_to: ISO date (YYYY-MM-DD), end of window. company_id: CompanyID to scope the search to. If omitted, returns orders for the authenticated user's default company. query: Optional free-text filter applied server-side. limit: Cap on yielded orders (default 200, max 1000). The underlying API caps page size at 50; pagination is handled transparently.
Returns:
JSON envelope. data.orders is the list of order records.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| date_from | Yes | ||
| date_to | Yes | ||
| company_id | No | ||
| query | No | ||
| limit | No |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| result | Yes |