GET /api/v2/location/floorplan
Returns floor plan coordinate data for a specific hall, including the SVG/image dimensions and stand positions. Use this for spatial mapping and interactive floor plan rendering.
Authentication
Authorization: Bearer <your_api_key>
Endpoint
GET /api/v2/location/floorplan
Query Parameters
|
Parameter |
Type |
Required |
Description |
|---|---|---|---|
|
|
integer |
Yes |
The hall ID to retrieve floor plan coordinates for |
Response Fields
The response contains hall metadata and an array of stand coordinate objects including position (x, y), dimensions, and stand identifiers.
Example Request
Bash
curl -X GET "https://your-event-domain.com/api/v2/location/floorplan?hall_id=9" \
-H "Authorization: Bearer your_api_key_here"