# Get event Get an event by its ID. Endpoint: GET /v1/events/{eventId} Version: 0.1.0 Security: OAuth2 ## Path parameters: - `eventId` (string, required) The unique identifier for the event. ## Response 200 fields (application/json): - `id` (string, required) The unique identifier for the event. - `state` (string, required) The state of the event. Enum: "ACTIVE", "INACTIVE", "CANCELLED", "COMPLETED" - `visibility` (string, required) The visibility of the event. Enum: "PUBLIC", "PRIVATE" - `experience_id` (string, required) The unique identifier for the experience. - `capacity` (object, required) The capacity of the event. - `capacity.total` (integer, required) The total number of seats. - `capacity.reserved` (integer, required) The number of reserved seats. - `sessions` (array, required) The sessions for the event. - `sessions.id` (string, required) The unique identifier for the session. - `sessions.start_time` (string, required) The start time of the session. - `sessions.end_time` (string, required) The end time of the session. - `sessions.timezone` (string, required) The IANA time zone name for the session. Example: "Europe/Copenhagen" - `sessions.location_id` (string, required) The unique identifier for the location of the session. - `sessions.languages` (array, required) The languages spoken during the session. Example: ["en"] - `created_at` (string, required) The date and time when the event was created. - `updated_at` (string, required) The date and time when the event was last updated. - `metadata` (object) A set of key-value pairs that are attached to the event for storing additional information. - `metadata.example_key` (string) Example of a metadata key. ## Response 404 fields (application/json): - `message` (string, required) - `code` (string, required)