Outbound warehouse sheets
Domain InventorySheetOut — read-only (GET).
1. List — GET /api/v6.1/inventory_sheet_outs
Filters include: id, sheet_code, account_id/account_name, store_id, user_id, sheet_status, order_id, sale_order_code, sheet_date, has_accounting, department filters, inventory_product_* + product custom fields, nested sub_account.
Search: sheet_code · Sort: id · Fields: CSV (Needed info), default id · Paging: limit/offset
Sample response
{
"data": [
{ "id": 2100, "sheet_code": "PXK/2026/0002", "sheet_date": "2026-03-16", "store_id": 1, "sheet_status": 2 }
],
"has_more": false,
"offset": 0,
"limited": 50,
"sorted": { "id": "DESC" }
}
2. Detail — GET /api/v6.1/inventory_sheet_out
Exactly one of: inventory_sheet_out_id or inventory_sheet_out_code.
curl --location 'https://example.getflycrm.com/api/v6.1/inventory_sheet_out?inventory_sheet_out_id=2100&fields=id,sheet_code,sheet_details' \
--header 'X-API-KEY: <your_api_key>'
3. Notes
- v6.0:
GET /api/v6/inventory_sheet_outs/{id}