GET /api/v2/floorplan/getHalls
Returns all halls associated with a given event.
Authentication
Authorization: Bearer <your_api_key>
Endpoint
GET /api/v2/floorplan/getHalls
Query Parameters
|
Parameter |
Type |
Required |
Description |
|---|---|---|---|
|
|
integer |
Yes |
The ID of the event to retrieve halls for |
Response Item Fields
|
Field |
Type |
Description |
|---|---|---|
|
|
integer |
Hall ID |
|
|
string |
Hall name |
|
|
boolean |
Whether the hall is conference-eligible |
|
|
boolean |
Whether the hall is a check-in zone |
If the event exists but has no halls, the halls key is absent from data.
Example Request
Bash
curl -X GET "https://your-event-domain.com/api/v2/floorplan/getHalls?event_id=7" \
-H "Authorization: Bearer your_api_key_here"