List issued documents
list_issued_documentsRetrieve issued documents like invoices, credit notes, quotes, and receipts for a company. Filter, sort, and paginate to find the records you need.
Instructions
List issued documents (invoices, credit notes, quotes, proformas, receipts...) for a company. One document type per call; defaults to invoices. Paginated: check current_page/last_page/total.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| q | No | Filter query, e.g. "date >= '2026-01-01' and date <= '2026-06-30'" or "entity.name like '%acme%'". Write the operators literally (>, <, >=, <=): the string is sent verbatim, so HTML entities like > or < reach the API and are rejected with 422 "Invalid query syntax". | |
| page | No | Page number to retrieve (1-based). | |
| sort | No | Comma-separated sort fields, prefix with "-" for descending. E.g. "-date" or "-date,number". | |
| type | No | The issued document type. | invoice |
| fieldset | No | "basic" for compact rows (default), "detailed" for full documents including line items. | basic |
| per_page | No | Results per page (min 5, max 100 — the API rejects smaller values). | |
| company_id | No | Fatture in Cloud company ID. Omit to use the default company configured for the session; discover IDs with list_companies. |