Skip to main content

Stocktake / opening slips

Domain InventorySheetSlipread-only (GET).


1. ListGET /api/v6.1/inventory_sheet_slips

Filters: id (eq), status (eq). valid = 1 is enforced by default.

Search: slip_code · Sort: id · Fields: CSV (Needed info), default id · Paging: limit/offset

Sample response

{
"data": [
{ "id": 88, "slip_code": "PKK/2026/001", "status": 1, "store_id": 1, "store_name": "Main warehouse" }
],
"has_more": false,
"offset": 0,
"limited": 50,
"sorted": { "id": "DESC" }
}

2. DetailGET /api/v6.1/inventory_sheet_slip

Exactly one of: inventory_sheet_slip_id or inventory_sheet_slip_code.

curl --location 'https://example.getflycrm.com/api/v6.1/inventory_sheet_slip?inventory_sheet_slip_id=88&fields=id,slip_code,slip_details' \
--header 'X-API-KEY: <your_api_key>'

3. Notes

  • v6.0: GET /api/v6/inventory_sheet_slips/{id}