How to mark a stand as conference-eligible
Use this guide when you need to make a stand available as a session location. Only stands 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/setStand" \
-H "Authorization: Bearer your_api_key_here" \
-F "id=42" \
-F "is_conference=true"
Request — disable
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=false"
What happens next
Once is_conference=true is set, the stand appears in GET /api/v2/sessions/getLocations and its id can be passed as stand_id in POST /api/v2/sessions/set.
When both
stand_idandhall_idare provided inPOST /api/v2/sessions/set,stand_idtakes precedence.