class CalendarApp method .getEventsForDay()

CalendarApp is the Apps Script service.

.getEventsForDay() is the method name you will see after a dot in your code.

What it does

Returns all events on a specific date.

Why it's used

  • Build a daily agenda email from today's calendar.
  • See if a room is free on a specific date.

Common errors

  • Forgetting parentheses on getEventsForDay. Write CalendarApp.getEventsForDay(), not CalendarApp.getEventsForDay or getEventsForDay by itself.
  • Skipping dots between chained calls. Each step needs a dot, like CalendarApp.getEventsForDay().
  • Adding spaces where they do not belong. Write CalendarApp.getEventsForDay(), not CalendarApp .getEventsForDay(), CalendarApp.getEventsForDay (), or CalendarApp . getEventsForDay().
  • Wrong capitalization. Use CalendarApp and getEventsForDay, not calendarapp or geteventsforday.

Explore

Related methods

Better Sheets tutorials

No tagged tutorials yet. Fetch Apps Script from the harvest table and this page fills automatically.

Related blog posts

Written guides about CalendarApp.getEventsForDay().

Browse the blog