Skip to main content
GET
/
stations
/
{id}
Get station by ID
curl --request GET \
  --url https://integrations.clopos.com/open-api/v2/stations/{id} \
  --header 'x-token: <api-key>'
{
  "success": true,
  "data": {
    "id": "<string>",
    "name": "<string>",
    "status": 123,
    "can_print": true,
    "reminder_enabled": true,
    "description": "<string>",
    "created_at": "2023-11-07T05:31:56Z",
    "updated_at": "2023-11-07T05:31:56Z"
  },
  "time": 123,
  "timestamp": "2023-11-07T05:31:56Z"
}

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.

Authorizations

x-token
string
header
required

JWT access token obtained from /v2/auth endpoint

Path Parameters

id
string
required

Station ID

Response

Station retrieved successfully

success
boolean
data
object
time
integer
timestamp
string<date-time>