How to mark a hall as a check-in zone

How to mark a hall as a check-in zone

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


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

Notes

  • is_conference and is_checkin_zone are independent — a hall can have both flags enabled simultaneously