How to mark a stand as a buyer lounge
Use this guide when you need to set or unset the buyer lounge flag on a stand.
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_buyer_lounge=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_buyer_lounge=false"
Notes
-
This flag is independent of
is_conferenceandis_checkin_zone— all three can be set simultaneously