How to mark a stand as a check-in zone

How to mark a stand as a check-in zone

Use this guide when you need to designate a stand as a check-in zone within the event.


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_checkin_zone=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_checkin_zone=false"

Notes

  • All three stand flags (is_conference, is_checkin_zone, is_buyer_lounge) are independent and can be combined freely