How to mark a hall as conference-eligible
Use this guide when you need to enable a hall as a location for sessions. Only halls with is_conference=true will appear in GET /api/v2/sessions/getLocations.
Request — enable
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"
Request — disable
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=false"
What happens next
Once is_conference=true is set, the hall appears in GET /api/v2/sessions/getLocations and its id can be used as hall_id in POST /api/v2/sessions/set.