Rooms API

get /rooms/{code}/queue

Get room queue info

Base URL https://api.vseepreview.com/api_v3 · operationId getRoomQueue

Authentication: Account Code Only — Only requires the X-AccountCode header. No token needed.

Retrieve queue information for a specific room. The waiting time is calculated as average_visit_time * before_me. This is a public endpoint.

Parameters

NameInTypeRequiredEnumDefaultDescription
X-AccountCodeheaderstringyesAccount code (e.g. vclinic)
codepathstringyesRoom code (e.g. ceproom1)

Responses

200 — Successful response

success — Room queue information

{
  "data": {
    "length": 10,
    "capacity": 100,
    "average_visit_time": 3600,
    "before_me": 3
  }
}

Machine-readable: OpenAPI JSON (operationId: getRoomQueue)