Fiskaly Export Invoices
Description
Section titled “Description”This module starts an invoice export process for a given taxpayer. The export is asynchronous: when calling this node, an export_id and a status are obtained. To check progress and download the resulting file, use the fiskalyGetExport node.
Filters by date range and invoice type can be applied to export only a subset of data.
The module is of type hidden (hidden in the main interface).
Configuration
Section titled “Configuration”| Parameter | Type | Required | Description |
|---|---|---|---|
| credentials_id | credentials | Yes | Fiskaly credential |
| taxpayer_id | text | Yes | UUID of the taxpayer |
| date_from | text | No | Export from date (YYYY-MM-DD) |
| date_to | text | No | Export to date (YYYY-MM-DD) |
| type_filter | text | No | Filter by type (SIMPLIFIED, COMPLETE, etc.) |
Credentials
Section titled “Credentials”Requires Fiskaly type credentials with:
- api_key: Fiskaly API Key
- api_secret: Fiskaly API Secret
Output
Section titled “Output”{ "nextModule": "siguiente_modulo", "data": { "success": true, "export": { "...datos de la exportacion..." }, "export_id": "export-uuid-123", "status": "PENDING", "message": "Exportacion de facturas iniciada exitosamente" }}Usage Example
Section titled “Usage Example”Basic case
Section titled “Basic case”{ "credentials_id": "mi-fiskaly", "taxpayer_id": "uuid-contribuyente", "date_from": "2026-01-01", "date_to": "2026-03-31", "type_filter": "COMPLETE"}API Used
Section titled “API Used”- Fiskaly SIGN ES API - POST
/taxpayers/{taxpayer_id}/invoices/export
- The export is an asynchronous process; the result is not available immediately
- Use the fiskalyGetExport node with the obtained
export_idto check the status and download - Date and type filters are optional; without them, all invoices are exported
Related Nodes
Section titled “Related Nodes”- FiskalyGetExport - Get/download export
- FiskalyGetInvoices - Get invoices
- FiskalyCreateInvoice - Create/update invoice