Documentation Index
Fetch the complete documentation index at: https://developer.clopos.com/llms.txt
Use this file to discover all available pages before exploring further.
Purpose
Verifies the status and printing capabilities of a single station, such as a kitchen, bar, or custom station.HTTP Request
Request Example
Response
200 OK — Station found
404 Not Found — Station does not exist
Field Reference
Station object
| Field | Type | Description |
|---|---|---|
id | integer | Station identifier. |
name | string | Station name. |
status | integer | 1 = active, 0 = inactive. |
type | integer | Station type. 1 = kitchen, 0 = other. |
printable | integer | 1 if the station can print tickets, 0 otherwise. |
created_at | string | Creation timestamp (ISO 8601). |
updated_at | string | Last update timestamp (ISO 8601). |
Notes
- The station ID is used for product and printer mapping on the POS side; verify the current restaurant flow before making changes.
- Stations with
printable=0are designed only for screen notifications or digital preparation processes. - If a station is not found, it returns
404; selecting a fallback station on the client side or showing a remapping screen to the user provides a good experience.