Returns all machine status codes and their descriptions. Use this lookup table to interpret status_code / status values returned by the machine and report endpoints.
Authentication
Requires the X-API-Key header.
Query parameters
None.
Response (200 OK)
| Field | Type | Description |
|---|---|---|
data[].id | integer | Status code identifier (e.g. 1012). |
data[].en | string | English translation (e.g. "Machine stopped at end of pattern"). |
data[].de | string | German translation (e.g. "Maschine gestoppt am Musterende"). |
data[].it | string | Italian translation (e.g. "Macchina fermata a fine ricamo"). |
Example response
{
"data": [
{ "id": 1012, "en": "Machine stopped at end of pattern", "de": "Maschine gestoppt am Musterende", "it": "Macchina fermata a fine ricamo" }
]
}