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
Allows you to check printer, reminder, and status information by retrieving all stations in your POS and kitchen flows in a single call.HTTP Request
Query Parameters
Filter by station status (
1 = active, 0 = inactive).Filter stations that can redirect to a printer.
Page number for pagination.
Number of stations to return (1-200).
Request Example
Response
200 OK — List of stations
401 Unauthorized — Authorization missing
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
- Stations with
printable=0are designed only for screen notifications or digital preparation processes. - The active/inactive status of stations affects product routing on the POS side; inactive stations are not assigned to new orders.
- Adjust pagination parameters (
page,limit) for performance in large restaurant chains; it is generally not necessary for a single branch.