How to update a stand
Use this guide when you need to rename a stand or change its flags.
Request — rename a stand
Bash
curl -X POST "https://your-event-domain.com/api/v2/floorplan/setStand" \
-H "Authorization: Bearer your_api_key_here" \
-F "id=42" \
-F "name=Stand A1 — Renamed"
Request — update flags
Bash
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"
Notes
-
Include only the fields you want to change
-
hall_idis not required when updating byid -
Use
GET /api/v2/floorplan/getStands?hall_id=to retrieve stand IDs