Skip to content

FURS Premises

The FURS Premise object

object

Attributes

idstring
business_premise_namestring
typestring
is_activeboolean
real_estateobject
movable_premiseobject
Other attributes
entity_idstring
registered_atstring<date-time>
closed_atstring<date-time>
created_atstring<date-time>
updated_atstring<date-time>
Devicesarray of objects
Examplejson
{
  "id": "premise_507f1f77bcf86cd799439011",
  "business_premise_name": "Main Office",
  "entity_id": "ent_507f1f77bcf86cd799439011",
  "real_estate": {
    "cadastral_number": "1234",
    "building_number": "5",
    "building_section": "1",
    "street": "Dunajska cesta",
    "house_number": "22",
    "house_number_additional": "A",
    "community": "Ljubljana",
    "city": "Ljubljana",
    "postal_code": "1000"
  },
  "movable_premise": null,
  "created_at": "2025-01-01T00:00:00.000Z",
  "updated_at": "2025-01-01T00:00:00.000Z"
}

Register real estate premise

POST/fiscalization/furs/premises/real-estate

Register a real estate (physical location) business premise with FURS (Slovenia). Required before fiscalizing invoices from this location.

Header parameters

entity_idstringoptional

Entity ID on which the request is made. Auto-selected when only one entity exists, required when multiple entities exist.

Body parameters

business_premise_namestringrequired

Business premise name/identifier (e.g., 'P1', 'TRGOVINA1')

real_estateobjectrequired

Real estate (physical location) details

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",
    "real_estate": {
      "cadastral_number": "1234",
      "building_number": "567",
      "building_section": "1",
      "street": "Dunajska cesta",
      "house_number": "22",
      "house_number_additional": "A",
      "community": "Ljubljana",
      "city": "Ljubljana",
      "postal_code": "1000"
    }
  }'
Example:

Returns

business_premise_namestring

Registered business premise name

Other parameters
successboolean
messagestring
environmentstring
json
{
  "success": true,
  "message": "Business premise registered successfully",
  "business_premise_name": "STORE1",
  "environment": "production"
}

Register movable premise

POST/fiscalization/furs/premises/movable

Register a movable business premise (vehicle, market stall, vending machine) with FURS (Slovenia). Required before fiscalizing invoices from this premise.

Header parameters

entity_idstringoptional

Entity ID on which the request is made. Auto-selected when only one entity exists, required when multiple entities exist.

Body parameters

business_premise_namestringrequired

Business premise name/identifier (e.g., 'VEHICLE1', 'STALL2')

movable_premiseobjectrequired

Movable premise details

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",
    "movable_premise": {
      "premise_type": "A"
    }
  }'
Example:

Returns

business_premise_namestring

Registered business premise name

Other parameters
successboolean
messagestring
environmentstring
json
{
  "success": true,
  "message": "Business premise registered successfully",
  "business_premise_name": "TRUCK1",
  "environment": "production"
}

List all business premises

GET/fiscalization/furs/premises

Retrieve all registered business premises for the entity. Each premise represents a physical location or movable unit where invoices are issued.

Header parameters

entity_idstringoptional

Entity ID on which the request is made. Auto-selected when only one entity exists, required when multiple entities exist.

curl "https://eu.spaceinvoices.com/fiscalization/furs/premises" \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "x-entity-id: YOUR_ENTITY_ID"
json
[]

Get a business premise

GET/fiscalization/furs/premises/{id}

Retrieve details of a specific business premise by ID, including its electronic devices.

Header parameters

entity_idstringoptional

Entity ID on which the request is made. Auto-selected when only one entity exists, required when multiple entities exist.

Path parameters

idstringrequired

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

idstring
business_premise_namestring
typestring
is_activeboolean
Other parameters
entity_idstring
real_estateobject
movable_premiseobject
registered_atstring<date-time>
closed_atstring<date-time>
created_atstring<date-time>
updated_atstring<date-time>
Devicesarray of objects
json
{
  "id": "premise_507f1f77bcf86cd799439011",
  "business_premise_name": "Main Office",
  "entity_id": "ent_507f1f77bcf86cd799439011",
  "real_estate": {
    "cadastral_number": "1234",
    "building_number": "5",
    "building_section": "1",
    "street": "Dunajska cesta",
    "house_number": "22",
    "house_number_additional": "A",
    "community": "Ljubljana",
    "city": "Ljubljana",
    "postal_code": "1000"
  },
  "movable_premise": null,
  "created_at": "2025-01-01T00:00:00.000Z",
  "updated_at": "2025-01-01T00:00:00.000Z"
}

Close business premise

POST/fiscalization/furs/premises/{id}/close

Close a previously registered business premise with FURS. This should be done when a business location is permanently closed.

Header parameters

entity_idstringoptional

Entity ID on which the request is made. Auto-selected when only one entity exists, required when multiple entities exist.

Path parameters

idstringrequired

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

business_premise_namestring

Registered business premise name

Other parameters
successboolean
messagestring
environmentstring
json
{
  "success": true,
  "message": "Business premise closed successfully",
  "business_premise_name": "STORE1",
  "environment": "production"
}