Fakturownia CLI recurrings: list, create, update, and delete recurring invoice definitions with README-backed request and output discovery.
Auto-generated by
go run ./cmd/gen-skills. Do not edit manually.
PREREQUISITE: Read
fakturownia-sharedfirst.
request_body_schema guidance for recurring creation or next-date updates.fakturownia recurring list — List recurring invoice definitionsfakturownia recurring create — Create a recurring invoice definitionfakturownia recurring update — Update a recurring invoice definitionfakturownia recurring delete — Delete a recurring invoice definition--input (required): Recurring JSON input as inline JSON, @file, or - for stdin--id (required): Recurring definition ID--yes (required, default false): Confirm recurring definition deletionFAKTUROWNIA_PROFILE: Select a profile unless --profile is providedFAKTUROWNIA_URL: Override the base account URL from any profileFAKTUROWNIA_API_TOKEN: Override the API token from any profilefakturownia schema recurring list --json to inspect README-backed recurring output fields such as name, every, and next_invoice_date.fakturownia schema recurring create --json and fakturownia schema recurring update --json to inspect request_body_schema and accepted --input modes.--input accepts inline JSON, @file, or - for stdin, and the CLI wraps the inner object into the upstream recurring envelope.fakturownia recurring list --json
fakturownia recurring list --columns id,name,every,next_invoice_date,send_email
fakturownia recurring list --raw
fakturownia recurring create --input '{"name":"Nazwa cyklicznosci","invoice_id":1,"start_date":"2016-01-01","every":"1m","send_email":true}' --json
fakturownia recurring create --input '{"name":"Nazwa cyklicznosci","invoice_id":1,"every":"1m"}' --dry-run --json
fakturownia recurring update --id 111 --input '{"next_invoice_date":"2016-02-01"}' --json
fakturownia recurring update --id 111 --input '{"next_invoice_date":"2016-02-01"}' --dry-run --json
fakturownia recurring delete --id 111 --yes --json
fakturownia recurring delete --id 111 --yes --dry-run --json