Docs

Add Area

POST /Events/{eventId}/areas

POST/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.

Creates a new area on the event. The calling user is automatically granted AreaAdmin permission over the new area.

Requires EventAdmin permission on the event.

Path Parameters

FieldTypeRequiredDescription
eventIdGuidRequiredThe ID of the event to add the area to.

Request Body

FieldTypeRequiredDescription
namestringRequiredThe display name for the area. Must not be empty.

Example Request

{
  "name": "Main Stage"
}

Response

201 Created — No response body.

Error Codes

CodeHTTP StatusDescription
UNAUTHORIZED401Missing or invalid token.
NOT_FOUND404Event not found.
BAD_REQUEST400Name is empty or invalid.