# Get events Get all events for the company. Endpoint: GET /v1/events Version: 0.1.0 Security: OAuth2 ## Query parameters: - `cursor` (string) The cursor for pagination. An empty string indicates the start of the list. - `limit` (integer) The maximum number of events to return. - `from` (string) Filter events based on the provided timestamp. - `to` (string) Filter events based on the provided timestamp. ## Response 200 fields (application/json): - `next` (string) The cursor for the next page. An empty string indicates the end of the list. - `items` (array) - `items.id` (string, required) The unique identifier for the event. - `items.state` (string, required) The state of the event. Enum: "ACTIVE", "INACTIVE", "CANCELLED", "COMPLETED" - `items.visibility` (string, required) The visibility of the event. Enum: "PUBLIC", "PRIVATE" - `items.experience_id` (string, required) The unique identifier for the experience. - `items.capacity` (object, required) The capacity of the event. - `items.capacity.total` (integer, required) The total number of seats. - `items.capacity.reserved` (integer, required) The number of reserved seats. - `items.sessions` (array, required) The sessions for the event. - `items.sessions.id` (string, required) The unique identifier for the session. - `items.sessions.start_time` (string, required) The start time of the session. - `items.sessions.end_time` (string, required) The end time of the session. - `items.sessions.timezone` (string, required) The IANA time zone name for the session. Example: "Europe/Copenhagen" - `items.sessions.location_id` (string, required) The unique identifier for the location of the session. - `items.sessions.languages` (array, required) The languages spoken during the session. Example: ["en"] - `items.created_at` (string, required) The date and time when the event was created. - `items.updated_at` (string, required) The date and time when the event was last updated. - `items.metadata` (object) A set of key-value pairs that are attached to the event for storing additional information. - `items.metadata.example_key` (string) Example of a metadata key.