How to update a stand

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_id is not required when updating by id

  • Use GET /api/v2/floorplan/getStands?hall_id= to retrieve stand IDs