GET floorplan/getStands

GET /api/v2/floorplan/getStands

Returns all stands belonging to a specified hall.


Authentication

Authorization: Bearer <your_api_key>

Endpoint

GET /api/v2/floorplan/getStands

Query Parameters

Parameter

Type

Required

Description

hall_id

integer

Yes

The ID of the hall to retrieve stands for


Response Item Fields

Field

Type

Description

id

integer

Stand ID

name

string

Stand name

is_conference

boolean

Whether the stand is conference-eligible (eligible for use as a session location)

is_checkin_zone

boolean

Whether the stand is a check-in zone

is_buyer_lounge

boolean

Whether the stand is a buyer lounge zone

last_update

integer

Unix timestamp of the last update

If the hall exists but has no stands, the stands key is absent from data.


Example Request

Bash
curl -X GET "https://your-event-domain.com/api/v2/floorplan/getStands?hall_id=9" \
  -H "Authorization: Bearer your_api_key_here"