FURS Devices
FURS Devices
Register and manage electronic devices (cash registers, POS terminals) for FURS fiscalization
The FURS Device object
Attributes
{
"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
/fiscalization/furs/devices/{id}Retrieve details of a specific electronic device by ID.
Header parameters
Entity ID on which the request is made. Optional - defaults to the first created entity if not provided.
Path parameters
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
{
"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
/fiscalization/furs/premises/{id}/devicesRetrieve all electronic devices (cash registers, POS terminals) registered for a business premise.
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}/devices" \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "x-entity-id: YOUR_ENTITY_ID"[]Register electronic device
/fiscalization/furs/premises/{id}/devicesRegister an electronic device (cash register, POS terminal, etc.) for a business premise. Required before fiscalizing invoices from this device.
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
Body parameters
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
{
"success": true,
"message": "Electronic device registered successfully",
"device_name": "DEVICE1"
}