# List Events List the events items. Endpoint: GET /items/events Version: 1.0.0 Security: Auth ## Query parameters: - `fields` (array) Control what fields are being returned in the object. - `limit` (integer) A limit on the number of objects that are returned. - `page` (integer) Cursor for use in pagination. Often used in combination with limit. - `meta` (string) What metadata to return in the response. Enum: "total_count", "filter_count", "*" - `offset` (integer) How many items to skip when fetching data. - `sort` (array) How to sort the returned items. is a CSV of fields used to sort the fetched items. Sorting defaults to ascending (ASC) order but a minus sign () can be used to reverse this to descending (DESC) order. Fields are prioritized by their order in the CSV. You can also use a to sort randomly. - `filter` (object) Select items in collection by given conditions. - `search` (string) Filter by items that contain the given search query in one of their fields. ## Response 200 fields (application/json): - `data` (array) - `data.id` (integer) Example: 1 - `data.min_participants` (integer,null) Example: 2 - `data.max_participants` (integer,null) Example: 14 - `data.remarks` (string,null) Example: "Selbstlernphasen sind für fortgeschrittene Teilnehmer an 2 Nachmittagen in der Woche möglich." - `data.link` (string,null) Example: "https://www.edtelligent.de" - `data.institution` (string, required) Example: "fd6dafa2-9cf9-469a-9bc9-38446ec552bc" - `data.address` (any) - `data.event_start_date` (string,null) Example: "2024-12-01T00:00:00" - `data.event_end_date` (string,null) Example: "2024-12-01T00:00:00" - `data.registration_deadline` (string,null) Example: "2024-12-15T00:00:00" - `data.announcement_start_date` (string,null) Example: "2024-11-01T00:00:00" - `data.announcement_end_date` (string,null) Example: "2024-12-01T00:00:00" - `data.instruction_form` (any) - `data.instruction_time` (any) - `data.is_inhouse` (boolean,null) - `data.duration_regular_start` (any) - `data.has_individual_start` (boolean,null) - `data.is_part_time` (boolean,null) - `data.has_employer_practical_part` (boolean,null) - `data.instruction_time_comment` (string,null) Example: "Teilzeit: Mo-Fr 8-12 Uhr" - `data.education_voucher` (boolean,null) Example: true - `data.comment` (string,null) Example: "Nur mit Bildungsgutschein" - `data.course` (any) - `data.execution_form` (any) - `data.measure_number` (string,null) Example: "M-12-12345-9" - `data.own_offer_number` (string,null) Example: "123" - `data.duration_in_days` (integer,null) Example: 120 - `data.account` (integer,null) Example: 1 - `data.duration_unit` (string,null) Example: "week_days" - `data.contacts` (array,null) - `meta` (object) - `meta.total_count` (integer) Returns the total item count of the collection you're querying. Example: 100 - `meta.filter_count` (integer) Returns the item count of the collection you're querying, taking the current filter/search parameters into account. Example: 10 ## Response 401 fields (application/json): - `error` (object) - `error.code` (integer) Example: 403 - `error.message` (string) Example: "Invalid token"