Skip to content

FURS Devices

FURS Devices

Register and manage electronic devices (cash registers, POS terminals) for FURS fiscalization

The FURS Device object

object

Attributes

idstring
Other attributes
business_premise_idstring
electronic_device_namestring
is_activeboolean
counternumber
registered_atstring<date>
created_atstring<date>
updated_atstring<date>
Examplejson
{
  "id": "device_507f1f77bcf86cd799439011",
  "electronic_device_name": "POS Terminal 1",
  "business_premise_id": "premise_507f1f77bcf86cd799439011",
  "counter": 0,
  "entity_id": "ent_507f1f77bcf86cd799439011",
  "created_at": "2025-01-01T00:00:00.000Z",
  "updated_at": "2025-01-01T00:00:00.000Z"
}

Get an electronic device

GET/fiscalization/furs/devices/{id}

Retrieve details of a specific electronic device by ID.

Header parameters

entity_idstringoptional

Entity ID on which the request is made. Optional - defaults to the first created entity if not provided.

Path parameters

idstringrequired

Electronic device ID

curl "https://eu.spaceinvoices.com/fiscalization/furs/devices/{id}" \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "x-entity-id: YOUR_ENTITY_ID"

Returns

idstring
Other parameters
business_premise_idstring
electronic_device_namestring
is_activeboolean
counternumber
registered_atstring<date>
created_atstring<date>
updated_atstring<date>
json
{
  "id": "device_507f1f77bcf86cd799439011",
  "electronic_device_name": "POS Terminal 1",
  "business_premise_id": "premise_507f1f77bcf86cd799439011",
  "counter": 0,
  "entity_id": "ent_507f1f77bcf86cd799439011",
  "created_at": "2025-01-01T00:00:00.000Z",
  "updated_at": "2025-01-01T00:00:00.000Z"
}

List electronic devices

GET/fiscalization/furs/premises/{id}/devices

Retrieve all electronic devices (cash registers, POS terminals) registered for a business premise.

Header parameters

entity_idstringoptional

Entity ID on which the request is made. Optional - defaults to the first created entity if not provided.

Path parameters

idstringrequired

Business premise ID

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

Register electronic device

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

Register an electronic device (cash register, POS terminal, etc.) for a business premise. Required before fiscalizing invoices from this device.

Header parameters

entity_idstringoptional

Entity ID on which the request is made. Optional - defaults to the first created entity if not provided.

Path parameters

idstringrequired

Business premise ID

Body parameters

namestringrequired

Electronic device name/identifier (e.g., 'E1', 'POS1', 'DEVICE1')

curl -X POST "https://eu.spaceinvoices.com/fiscalization/furs/premises/{id}/devices" \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "x-entity-id: YOUR_ENTITY_ID" \
  -H "Content-Type: application/json" \
  -d '{
    "name": "DEVICE1"
  }'

Returns

successboolean
messagestring
device_namestring
json
{
  "success": true,
  "message": "Electronic device registered successfully",
  "device_name": "DEVICE1"
}