Fiskaly Get Signers
Description
Section titled “Description”This module allows querying signers (digital certificates) registered in Fiskaly for a taxpayer. It has two modes of operation:
- Get by ID: If
signer_idis provided, gets the details of a specific signer. - List all: If
signer_idis empty, lists all signers for the taxpayer with pagination.
Signers are digital certificates required for the electronic signing of invoices according to the Verifactu/TicketBAI regulations.
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 |
| signer_id | text | No | UUID of the signer. If empty, lists all |
| limit | text | No | Maximum number of results (default: 100) |
| offset | text | No | Offset for pagination |
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, "signers": [{ "...datos del firmante..." }], "count": 2 }}Usage Example
Section titled “Usage Example”Basic case
Section titled “Basic case”{ "credentials_id": "mi-fiskaly", "taxpayer_id": "uuid-contribuyente"}API Used
Section titled “API Used”- Fiskaly SIGN ES API - GET
/taxpayers/{taxpayer_id}/signers(list) - Fiskaly SIGN ES API - GET
/taxpayers/{taxpayer_id}/signers/{signer_id}(get one)
- Signers represent digital certificates for the electronic signing of invoices
- Pagination is controlled with
limitandoffset
Related Nodes
Section titled “Related Nodes”- FiskalyUpsertSigner - Create/update signer
- FiskalyUpsertTaxpayer - Create/update taxpayer
- FiskalyCreateInvoice - Create/update invoice