FURS Settings
FURS Settings
Configure FURS fiscalization settings including numbering strategy and operator details
Get FURS settings
GET
/fiscalization/furs/settingsRetrieve FURS fiscalization settings for the entity, including certificate status and configuration
Request
Header parameters
entity_idstringoptional
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" \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "x-entity-id: YOUR_ENTITY_ID"Response
Returns
enabledboolean
numbering_strategystring
operator_tax_numberstring
operator_labelstring
certificate_file_idstring<uuid>
certificate_expirystring<date-time>
has_certificateboolean
certificate_statusstring
{
"enabled": true,
"numbering_strategy": "C",
"operator_tax_number": "12345678",
"operator_label": "POS Operator",
"certificate_file_id": "file_507f1f77bcf86cd799439011",
"certificate_expiry": "2025-12-31T23:59:59.000Z",
"certificate_cn": "12345678",
"certificate_issuer": "SIGOV-CA2",
"certificate_status": "valid",
"has_certificate": true
}Example:
Update FURS settings
PUT
/fiscalization/furs/settingsUpdate FURS fiscalization settings for the entity. Certificate must be uploaded separately via POST /fiscalization/furs/settings/certificate
Request
Header parameters
entity_idstringoptional
Entity ID on which the request is made. Optional - defaults to the first created entity if not provided.
Body parameters
enabledbooleanoptional
numbering_strategystringoptional
operator_tax_numberstringoptional
operator_labelstringoptional
curl -X PUT "https://eu.spaceinvoices.com/fiscalization/furs/settings" \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "x-entity-id: YOUR_ENTITY_ID" \
-H "Content-Type: application/json" \
-d '{
"enabled": true,
"numbering_strategy": "C",
"operator_tax_number": "12345678",
"operator_label": "POS Operator"
}'Example:
Response
Returns
enabledboolean
numbering_strategystring
operator_tax_numberstring
operator_labelstring
certificate_file_idstring<uuid>
certificate_expirystring<date-time>
has_certificateboolean
certificate_statusstring
{
"enabled": true,
"numbering_strategy": "C",
"operator_tax_number": "12345678",
"operator_label": "POS Operator",
"certificate_file_id": "file_507f1f77bcf86cd799439011",
"certificate_expiry": "2025-12-31T23:59:59.000Z",
"certificate_cn": "12345678",
"certificate_issuer": "SIGOV-CA2",
"certificate_status": "valid",
"has_certificate": true
}Example: