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 |
|---|---|---|---|
|
|
integer |
Yes |
The ID of the hall to retrieve stands for |
Response Item Fields
|
Field |
Type |
Description |
|---|---|---|
|
|
integer |
Stand ID |
|
|
string |
Stand name |
|
|
boolean |
Whether the stand is conference-eligible (eligible for use as a session location) |
|
|
boolean |
Whether the stand is a check-in zone |
|
|
boolean |
Whether the stand is a buyer lounge zone |
|
|
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"