--- name: "fakturownia-warehouse-actions" description: "Fakturownia CLI warehouse actions: list warehouse actions with explicit README-backed filters and inspect conservative action fields through schema output." metadata: bundle: "fakturownia" category: "api-area" prerequisite: "fakturownia-shared" related_skills: - "fakturownia-shared" - "fakturownia-warehouses" - "fakturownia-warehouse-documents" - "fakturownia-products" - "fakturownia-schema" - "fakturownia-doctor" command_refs: - "warehouse-action list" cli_help: "fakturownia warehouse-action --help" requires_bins: - "fakturownia" discovery_hint: "Use `fakturownia schema warehouse-action list --json` to inspect output fields, then narrow queries with the explicit warehouse-action filter flags." --- > Auto-generated by `go run ./cmd/gen-skills`. Do not edit manually. # Warehouse Actions > **PREREQUISITE:** Read [`fakturownia-shared`](../shared/SKILL.md) first. ## Use This Skill When - The task is about reading warehouse stock movements or filtering actions by warehouse, product, document, kind, or date range. - You need conservative README-backed warehouse action fields without mutating warehouse state. ## Covered Commands - `fakturownia warehouse-action list` — List warehouse actions ## Notable Flags - `--page` (default `1`): Requested result page - `--per-page` (default `25`): Requested result count per page - `--warehouse-id`: Filter by warehouse ID - `--kind`: Filter by warehouse action kind - `--product-id`: Filter by product ID - `--date-from`: Filter actions created on or after a date such as 2026-04-01 - `--date-to`: Filter actions created on or before a date such as 2026-04-15 - `--from-warehouse-document`: Filter actions linked from a warehouse document ID - `--to-warehouse-document`: Filter actions linked to a warehouse document ID - `--warehouse-document-id`: Filter by warehouse document ID ## Environment - `FAKTUROWNIA_PROFILE`: Select a profile unless --profile is provided - `FAKTUROWNIA_URL`: Override the base account URL from any profile - `FAKTUROWNIA_API_TOKEN`: Override the API token from any profile ## Output Discovery - Use `fakturownia schema warehouse-action list --json` before building selectors. - Read `output.known_fields` to discover conservative README-backed action fields such as `product_id`, `quantity`, `warehouse_id`, `warehouse_document_id`, and `warehouse2_id`. - `warehouse-action list` exposes only explicit first-class filter flags in v1: `--warehouse-id`, `--kind`, `--product-id`, `--date-from`, `--date-to`, `--from-warehouse-document`, `--to-warehouse-document`, and `--warehouse-document-id`. - There is no request body schema for warehouse actions in v1 because the CLI exposes this noun as read-only. ## Examples ```bash fakturownia warehouse-action list --json fakturownia warehouse-action list --warehouse-id 1 --kind mm --product-id 7 --json fakturownia warehouse-action list --warehouse-document-id 15 --columns id,kind,product_id,quantity,warehouse_document_id fakturownia warehouse-action list --page 2 --per-page 25 --raw ``` ## Related Skills - [fakturownia-shared](../shared/SKILL.md) - [fakturownia-warehouses](../warehouses/SKILL.md) - [fakturownia-warehouse-documents](../warehouse-documents/SKILL.md) - [fakturownia-products](../products/SKILL.md) - [fakturownia-schema](../schema/SKILL.md) - [fakturownia-doctor](../doctor/SKILL.md)