Docs
Get Event
GET /Events/{eventId}
GET
/Events/{eventId}Required 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 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
| Field | Type | Required | Description |
|---|---|---|---|
| eventId | Guid | Required | The 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
| Code | HTTP Status | Description |
|---|---|---|
UNAUTHORIZED | 401 | Missing or invalid token. |
NOT_FOUND | 404 | Event not found or archived. |