Docs

Get Event

GET /Events/{eventId}

GET/Events/{eventId}

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 the core details of an event, including its name, organization, and the current values of any custom event attributes defined by the organization.

The eventAttributes array describes the attribute schema configured at the organization level (name, type, available options). The attributes array contains the values currently saved on this event for each of those attributes.

Path Parameters

FieldTypeRequiredDescription
eventIdGuidRequiredThe ID of the event to retrieve.

Example Response

{
  "id": "0197f067-94af-743b-bc06-9c00d54efe20",
  "organizationId": "52fc8cd5-d714-4647-a495-cfa6da2bcffa",
  "name": "Summer Festival 2026",
  "eventAttributes": [
    {
      "id": "a1b2c3d4-0000-0000-0000-000000000001",
      "name": "Venue Type",
      "type": "Select",
      "isRequired": true,
      "options": [
        { "id": "opt-001", "value": "Indoor", "color": "#4CAF50" },
        { "id": "opt-002", "value": "Outdoor", "color": "#2196F3" }
      ]
    }
  ],
  "attributes": [
    {
      "attributeId": "a1b2c3d4-0000-0000-0000-000000000001",
      "value": "Outdoor"
    }
  ]
}

Error Codes

CodeHTTP StatusDescription
UNAUTHORIZED401Missing or invalid token.
NOT_FOUND404Event not found or archived.