FURS Certificate
FURS Certificate
Upload and manage the P12/PFX certificate required for FURS fiscalization
Upload FURS certificate
/fiscalization/furs/settings/certificateUpload a P12/PFX certificate for FURS fiscalization. The certificate will be processed to extract expiry date and stored securely. The passphrase will be encrypted before storage. Certificate is entity-specific and required for fiscalizing invoices.
Header parameters
Entity ID on which the request is made. Optional - defaults to the first created entity if not provided.
Body parameters
P12/PFX certificate file
curl -X POST "https://eu.spaceinvoices.com/fiscalization/furs/settings/certificate" \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "x-entity-id: YOUR_ENTITY_ID" \
-F "file=@/path/to/image.png"Returns
{
"certificate_file_id": "file_507f1f77bcf86cd799439011",
"certificate_expiry": "2025-12-31T23:59:59.000Z",
"certificate_cn": "12345678",
"certificate_issuer": "SIGOV-CA2",
"uploaded_at": "2025-01-15T10:30:00.000Z",
"message": "Certificate uploaded and validated successfully"
}Get certificate metadata
/fiscalization/furs/settings/certificateRetrieve certificate metadata including expiry date and upload time. Does not return the certificate or private key.
Header parameters
Entity ID on which the request is made. Optional - defaults to the first created entity if not provided.
curl "https://eu.spaceinvoices.com/fiscalization/furs/settings/certificate" \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "x-entity-id: YOUR_ENTITY_ID"Returns
{
"certificate_file_id": "file_507f1f77bcf86cd799439011",
"certificate_expiry": "2025-12-31T23:59:59.000Z",
"certificate_cn": "12345678",
"certificate_issuer": "SIGOV-CA2",
"uploaded_at": "2025-01-15T10:30:00.000Z",
"message": "Certificate uploaded and validated successfully"
}Delete FURS certificate
/fiscalization/furs/settings/certificateDelete the FURS certificate for the entity. This will remove both the uploaded file reference and the extracted certificate from the database.
Header parameters
Entity ID on which the request is made. Optional - defaults to the first created entity if not provided.
curl -X DELETE "https://eu.spaceinvoices.com/fiscalization/furs/settings/certificate" \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "x-entity-id: YOUR_ENTITY_ID"