Skip to content

Fiskaly Get Signers

This module allows querying signers (digital certificates) registered in Fiskaly for a taxpayer. It has two modes of operation:

  1. Get by ID: If signer_id is provided, gets the details of a specific signer.
  2. List all: If signer_id is 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).

ParameterTypeRequiredDescription
credentials_idcredentialsYesFiskaly credential
taxpayer_idtextYesUUID of the taxpayer
signer_idtextNoUUID of the signer. If empty, lists all
limittextNoMaximum number of results (default: 100)
offsettextNoOffset for pagination

Requires Fiskaly type credentials with:

  • api_key: Fiskaly API Key
  • api_secret: Fiskaly API Secret
{
"nextModule": "siguiente_modulo",
"data": {
"success": true,
"signers": [{ "...datos del firmante..." }],
"count": 2
}
}
{
"credentials_id": "mi-fiskaly",
"taxpayer_id": "uuid-contribuyente"
}
  • 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 limit and offset