Skip to main content
GET
/
stations
/
{id}
Get station by ID
curl --request GET \
  --url https://integrations.clopos.com/open-api/stations/{id} \
  --header 'x-brand: <api-key>' \
  --header 'x-token: <api-key>' \
  --header 'x-venue: <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"
}

Authorizations

x-token
string
header
required

Access token obtained from /auth endpoint

x-brand
string
header
required

Brand identifier

x-venue
string
header
required

Venue identifier

Path Parameters

id
string
required

Station ID

Response

Station retrieved successfully

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