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
Authorization
Required headers:x-tokenx-brandx-venue
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
Top-level fields
| Field | Type | Description |
|---|---|---|
success | boolean | Success status of the request. |
data | array | Station objects. |
total | number | Total number of stations. |
time | number | Response time. |
timestamp | string | ISO 8601 date. |
Station object
| Field | Type | Description |
|---|---|---|
id | string | Station identifier. |
name | string | Station name. |
status | integer | 1 = active, 0 = inactive. |
can_print | boolean | Can be redirected to a printer. |
reminder_enabled | boolean | Is reminder notification on? |
description | string | Optional description. |
created_at | string | Creation time. |
updated_at | string | Last update time. |
Notes
- The
can_print=trueparameter returns only stations that can print receipts; you can usefalsefor digital-only points like kitchen screens. - If the reminder feature (
reminder_enabled) is off, “not sent to station” warnings will not appear on the terminal. - 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.
Authorizations
Access token obtained from /auth endpoint
Brand identifier
Venue identifier
Query Parameters
Filter by station status
Available options:
0, 1 Filter stations that can print order tickets
Page number for pagination (starts at 1)
Required range:
x >= 1Number of stations to return per page
Required range:
1 <= x <= 200