## Overview
jushuitan.saleout.list.query is a Qimen custom query exposed by Jushuitan for fetching sales outbound orders — the actual fulfillment documents behind marketplace orders. Because Taobao-family orders are invisible in the plain open API, this interface is the only compliant way to extract outbound data for Taobao shops.
### Request essentials
1. Call the unified Qimen gateway; sign per Qimen rules, set target_app_key=23060081 and pass customer_id for merchant routing.
2. Business parameters (page_index/page_size) with common filters:
- status — Creating (pending), WaitConfirm, Confirmed, Cancelled;
- wms_co_id — sub-warehouse; shop_id — shop;
- so_ids — online order numbers (pinpoint); start_modified/end_modified — modify-time window.
3. data.datas returns outbound rows with io_id (outbound no), so_id, status, warehouse and items (sku_id, qty, sale_price, sale_amount).
### Typical uses
- Generate Kingdee/Yonyou sales-delivery vouchers automatically from outbound orders, closing the e-commerce-to-ERP loop.
- Run three-way matching across items.sale_amount, marketplace statements and ERP receivables for AI-assisted reconciliation.
- Aggregate shipped quantities per wms_co_id as the actual-demand input for replenishment and inter-warehouse transfer models.
### Operational tips
The Qimen gateway expects form encoding, not JSON bodies — sending JSON is the most common first-call mistake. Persist customer_id per merchant in the connection store and never hard-code it into shared code. When replaying history, watch the QPS budget: one saturated backfill window starves the real-time sync that shares the same credentials.