GET floorplan/getHalls

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

event_id

integer

Yes

The ID of the event to retrieve halls for


Response Item Fields

Field

Type

Description

id

integer

Hall ID

name

string

Hall name

is_conference

boolean

Whether the hall is conference-eligible

is_checkin_zone

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"