POST /api/v2/floorplan/setStand
Creates a new stand within a hall, or updates an existing one.
Authentication
Authorization: Bearer <your_api_key>
Endpoint
POST /api/v2/floorplan/setStand
Content-Type: multipart/form-data
Create vs Update
-
Create: Omit
id(or pass0).hall_idandnameare required -
Update: Pass the
idof the existing stand. Other fields are optional
Body Parameters
|
Parameter |
Type |
Required |
Description |
|---|---|---|---|
|
|
integer |
Required for update |
ID of the stand to update |
|
|
integer |
Required on create |
The hall the new stand belongs to |
|
|
string |
Required on create |
Stand name (unique within the hall) |
|
|
boolean |
No |
Marks the stand as conference-eligible |
|
|
boolean |
No |
Marks the stand as a check-in zone |
|
|
boolean |
No |
Marks the stand as a buyer lounge zone |
Stand flags explained
|
Flag |
Effect |
|---|---|
|
|
Required for use as a session location. Stands with this flag appear in |
|
|
Marks the stand as a check-in zone |
|
|
Marks the stand as a buyer lounge zone |
Example Request — Create
curl -X POST "https://your-event-domain.com/api/v2/floorplan/setStand" \
-H "Authorization: Bearer your_api_key_here" \
-F "hall_id=9" \
-F "name=Stand A1" \
-F "is_conference=false"
Example Request — Update (make conference-eligible)
curl -X POST "https://your-event-domain.com/api/v2/floorplan/setStand" \
-H "Authorization: Bearer your_api_key_here" \
-F "id=42" \
-F "is_conference=true"