Skip to content

Fiskaly Export Invoices

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).

ParameterTypeRequiredDescription
credentials_idcredentialsYesFiskaly credential
taxpayer_idtextYesUUID of the taxpayer
date_fromtextNoExport from date (YYYY-MM-DD)
date_totextNoExport to date (YYYY-MM-DD)
type_filtertextNoFilter by type (SIMPLIFIED, COMPLETE, etc.)

Requires Fiskaly type credentials with:

  • api_key: Fiskaly API Key
  • api_secret: Fiskaly API Secret
{
"nextModule": "siguiente_modulo",
"data": {
"success": true,
"export": { "...datos de la exportacion..." },
"export_id": "export-uuid-123",
"status": "PENDING",
"message": "Exportacion de facturas iniciada exitosamente"
}
}
{
"credentials_id": "mi-fiskaly",
"taxpayer_id": "uuid-contribuyente",
"date_from": "2026-01-01",
"date_to": "2026-03-31",
"type_filter": "COMPLETE"
}
  • 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_id to check the status and download
  • Date and type filters are optional; without them, all invoices are exported