Docs

Get Areas

GET /Events/{eventId}/areas

GET/Events/{eventId}/areas

Required Tokens

FieldTypeRequiredDescription
BearerAuthorization: Bearer <api-key>OptionalYour API key. Pass it as the Bearer token on every request.
Event tokenx-Event-TokenOptionalRun **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

FieldTypeRequiredDescription
eventIdGuidRequiredThe 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

FieldTypeDescription
idGuidThe area's unique ID.
namestringThe area's display name.

Error Codes

CodeHTTP StatusDescription
UNAUTHORIZED401Missing or invalid token.
NOT_FOUND404Event not found.