ODBC guide

List events ordered by updated time


Retrieve events sorted by their last updated time using OrderBy='updated'. This is useful for tracking recent changes or modifications to events in the calendar.

Combine with Filters: Add StartTime to focus on recently updated events.

SELECT * FROM Events
--FROM EventsAll --(Get from All Calendars)
WITH (CalendarId='primary',
      OrderBy='updated')