list_store_orders
Fetch order details from a connected e-commerce store, including totals and fulfillment status. Use count and offset to paginate results.
Instructions
List orders from a connected e-commerce store with totals and fulfillment status.
Requires an active integration. Use list_store_customers for customer-level aggregates instead.
Authenticated via API key. Max 10 concurrent requests. Read-only, safe to retry.
Args: store_id: E-commerce store ID (alphanumeric string). Obtain from list_ecommerce_stores. count: Orders to return (1-1000, default 20). offset: Pagination offset. Use when total_items exceeds count.
Returns: JSON with total_items and orders array. Each: id, customer (email), order_total (float), currency_code (ISO 4217), financial_status, fulfillment_status, processed_at_foreign, lines_count.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| store_id | Yes | ||
| count | No | ||
| offset | No |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| result | Yes |