Docs
Get Areas
GET /Events/{eventId}/areas
GET
/Events/{eventId}/areasRequired Tokens
| Field | Type | Required | Description |
|---|---|---|---|
| Bearer | Authorization: Bearer <api-key> | Optional | Your API key. Pass it as the Bearer token on every request. |
| Event token | x-Event-Token | Optional | Run **Get Tokens** in the Authorization folder, or call `GET /Events/{eventId}/authorize` manually. |
Returns a list of all areas associated with the event. Areas represent distinct physical or logical sections of an event (e.g., Main Stage, VIP Lounge, Backstage). Each area can have its own advance, crew, and files.
Path Parameters
| Field | Type | Required | Description |
|---|---|---|---|
| eventId | Guid | Required | The ID of the event. |
Example Response
[
{
"id": "0197f06d-7593-72af-ae45-f5e012fbad50",
"name": "Main Stage"
},
{
"id": "0197f06d-7593-72af-ae45-f5e012fbad51",
"name": "VIP Lounge"
}
]
Response Fields
| Field | Type | Description |
|---|---|---|
| id | Guid | The area's unique ID. |
| name | string | The area's display name. |
Error Codes
| Code | HTTP Status | Description |
|---|---|---|
UNAUTHORIZED | 401 | Missing or invalid token. |
NOT_FOUND | 404 | Event not found. |