FURS Premises
FURS Premises
Register and manage business premises (physical locations or movable units) for FURS fiscalization
The FURS Premise object
Attributes
{
"id": "premise_507f1f77bcf86cd799439011",
"business_premise_name": "Main Office",
"entity_id": "ent_507f1f77bcf86cd799439011",
"real_estate": {
"cadastral_number": 1234,
"building_number": 5,
"building_section_number": 1
},
"movable_premise": null,
"created_at": "2025-01-01T00:00:00.000Z",
"updated_at": "2025-01-01T00:00:00.000Z"
}Register real estate premise
/fiscalization/furs/premises/real-estateRegister a real estate (physical location) business premise with FURS (Slovenia). Required before fiscalizing invoices from this location.
Header parameters
Entity ID on which the request is made. Optional - defaults to the first created entity if not provided.
Body parameters
Business premise name/identifier (e.g., 'P1', 'TRGOVINA1')
curl -X POST "https://eu.spaceinvoices.com/fiscalization/furs/premises/real-estate" \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "x-entity-id: YOUR_ENTITY_ID" \
-H "Content-Type: application/json" \
-d '{
"business_premise_name": "STORE1",
"numbering_strategy": "C",
"real_estate": {
"property_id": "1234-567-1",
"cadastral_number": "1234",
"building_number": "567",
"building_section": "1",
"street": "Dunajska cesta",
"house_number": "22",
"house_number_additional": "A",
"community": "Ljubljana"
}
}'Returns
{
"success": true,
"message": "Business premise registered successfully",
"business_premise_name": "STORE1",
"environment": "production"
}Register movable premise
/fiscalization/furs/premises/movableRegister a movable business premise (vehicle, market stall, vending machine) with FURS (Slovenia). Required before fiscalizing invoices from this premise.
Header parameters
Entity ID on which the request is made. Optional - defaults to the first created entity if not provided.
Body parameters
Business premise name/identifier (e.g., 'VEHICLE1', 'STALL2')
curl -X POST "https://eu.spaceinvoices.com/fiscalization/furs/premises/movable" \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "x-entity-id: YOUR_ENTITY_ID" \
-H "Content-Type: application/json" \
-d '{
"business_premise_name": "TRUCK1",
"numbering_strategy": "B",
"movable_premise": {
"premise_type": "A"
}
}'Returns
{
"success": true,
"message": "Business premise registered successfully",
"business_premise_name": "TRUCK1",
"environment": "production"
}List all business premises
/fiscalization/furs/premisesRetrieve all registered business premises for the entity. Each premise represents a physical location or movable unit where invoices are issued.
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/premises" \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "x-entity-id: YOUR_ENTITY_ID"[]Get a business premise
/fiscalization/furs/premises/{id}Retrieve details of a specific business premise by ID, including its electronic devices.
Header parameters
Entity ID on which the request is made. Optional - defaults to the first created entity if not provided.
Path parameters
Business premise ID
curl "https://eu.spaceinvoices.com/fiscalization/furs/premises/{id}" \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "x-entity-id: YOUR_ENTITY_ID"Returns
{
"id": "premise_507f1f77bcf86cd799439011",
"business_premise_name": "Main Office",
"entity_id": "ent_507f1f77bcf86cd799439011",
"real_estate": {
"cadastral_number": 1234,
"building_number": 5,
"building_section_number": 1
},
"movable_premise": null,
"created_at": "2025-01-01T00:00:00.000Z",
"updated_at": "2025-01-01T00:00:00.000Z"
}Close business premise
/fiscalization/furs/premises/{id}/closeClose a previously registered business premise with FURS. This should be done when a business location is permanently closed.
Header parameters
Entity ID on which the request is made. Optional - defaults to the first created entity if not provided.
Path parameters
Business premise ID
curl -X POST "https://eu.spaceinvoices.com/fiscalization/furs/premises/{id}/close" \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "x-entity-id: YOUR_ENTITY_ID"Returns
{
"success": true,
"message": "Business premise closed successfully",
"business_premise_name": "STORE1",
"environment": "production"
}