How to update a hall

How to update a hall

Use this guide when you need to rename a hall or change its flags.


Request — rename a hall

Bash
curl -X POST "https://your-event-domain.com/api/v2/floorplan/setHall" \
  -H "Authorization: Bearer your_api_key_here" \
  -F "id=9" \
  -F "name=Main Exhibition Hall"

Request — update flags only

Bash
curl -X POST "https://your-event-domain.com/api/v2/floorplan/setHall" \
  -H "Authorization: Bearer your_api_key_here" \
  -F "id=9" \
  -F "is_conference=true"

Notes

  • Include only the fields you want to change

  • event_id is not required when updating by id