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_conferenceandis_checkin_zoneare independent — a hall can have both flags enabled simultaneously