Event types

This page explains the eventType property, and specifications of event types available in the Google Calendar API.

Google Calendar allows users to create generic events, as well as events that are designed for specific use cases and with custom properties.

The event type can be discovered in the following places in the API:

  • All events are returned with an eventType.
  • eventType needs to be set when creating or updating an event resource. If unset, 'default' type will be used.
  • eventTypes can be specified in an Events:list call to list events of specific types. If no type is specified, all event types will be returned.
  • eventTypes can be specified in an Events:watch call to subscribe to updates on events of specific types. If no type is specified, the request will result in subscribing to all event types.

Default event

Events with default event type are created and used as one of the main resources of Google Calendar API. They support a wide range of properties which can be used to further customize the event.

See Create events to start working with Google Calendar events.

Birthday

Birthdays are special all-day events with annual recurrence. They have the following specifications:

  • eventType is set to 'birthday'.
  • start and end fields need to define an all-day event which spans exactly one day.
  • visibility field value must be 'private'.
  • transparency field value must be 'transparent'.
  • Need to have an annual recurrence, which means that the recurrence field must be 'RRULE:FREQ=YEARLY'. Birthday events falling on 29th of February must have the following recurrence rule: 'RRULE:FREQ=YEARLY;BYMONTH=2;BYMONTHDAY=-1'.
  • Can have a colorId, summary and reminders.
  • Don't support any other event properties.

Events from Gmail

Events automatically generated from Gmail have the 'fromGmail' event type.

Google Calendar API doesn't allow creating this event type using the insert method.

The API allows updating the colorId, reminders, visibility, transparency, status, private and shared extended properties using the update and patch methods.

The API supports get and list methods for reading events from Gmail. eventTypes can be set to 'fromGmail' to list only events generated from Gmail. If no type is specified, events from Gmail will be listed alongside all other event types.

The API supports the watch method to subscribe to changes on events from Gmail on Google Calendar. If no type is specified, all event types, including 'fromGmail', will be subscribed to.

Events from Gmail can be deleted using the delete method of the Google Calendar API.

Changing the organizer of an event from Gmail using move or update methods is not supported.

Focus time, out of office and working location

The Google Calendar API can be used to create and manage events that show the status of Google Calendar users.

These features are only available on primary calendars, and to some Google Calendar users. See Manage focus time, out of office, and working location events to learn more.

Explore event types in Google Apps Script

Google Apps Script is a JavaScript-based cloud scripting language that lets you build business applications that integrate with Google Workspace. Scripts are developed in a browser-based code editor, and they are stored and run on Google's servers. See also Google Apps Script quickstart to start using Apps Script to send requests to the Google Calendar API.

The following instructions describe how to read and manage events using the Google Calendar API as an advanced service in Google Apps Script. For a complete list of Google Calendar API resources and methods, see the reference documentation.

Create and set up the script

  1. Create a script by going to script.google.com/create.
  2. On the left pane next to Services, click Add a service .
  3. Select Google Calendar API and click Add.
  4. After enabled, the API appears on the left pane. Available methods and classes in the API can be listed using the Calendar keyword in the editor.

(Optional) Update the Google Cloud project

Each Google Apps Script project has an associated Google Cloud project. Your script can use the default project that Google Apps Script automatically creates. If you want to use a custom Google Cloud project, see Switch to a different standard Cloud project. After setting the Google Cloud project, select Editor on the left side to navigate back to the code editor.

Add code to the script

The following code sample shows how to list, read, and create events with different eventType values.

  1. Paste the following into the code editor.

    const CALENDAR_ID = 'CALENDAR_ID' || 'primary';
    
    /** Lists default events. */
    function listDefaultEvents() {
      listEvents('default');
    }
    
    /** Lists events from Gmail. */
    function listEventsFromGmail() {
      listEvents('fromGmail');
    }
    
    /**
      * Lists events with the given event type. If no type is specified, lists all events.
      * See https://developers.google.com/calendar/api/v3/reference/events/list
      */
    function listEvents(eventType = undefined) {
      // Query parameters for the list request.
      const optionalArgs = {
        eventTypes: eventType ? [eventType] : undefined,
        singleEvents: true,
        timeMax: '2024-07-30T00:00:00+01:00',
        timeMin: '2024-07-29T00:00:00+01:00',
      }
      try {
        var response = Calendar.Events.list(CALENDAR_ID, optionalArgs);
        response.items.forEach(event => console.log(event));
      } catch (exception) {
        console.log(exception.message);
      }
    }
    
    /**
      * Reads the event with the given eventId.
      * See https://developers.google.com/calendar/api/v3/reference/events/get
      */
    function readEvent() {
      try {
        var response = Calendar.Events.get(CALENDAR_ID, 'EVENT_ID');
        console.log(response);
      } catch (exception) {
        console.log(exception.message);
      }
    }
    
    /** Creates a default event. */
    function createDefaultEvent() {
      const event = {
        start: { dateTime: '2024-07-30T10:30:00+01:00'},
        end: { dateTime: '2024-07-30T12:30:00+01:00'},
        description: 'Created from Apps Script.',
        eventType: 'default',
        summary: 'Sample event',
      }
      createEvent(event);
    }
    
    /**
      * Creates a Calendar event.
      * See https://developers.google.com/calendar/api/v3/reference/events/insert
      */
    function createEvent(event) {
    
      try {
        var response = Calendar.Events.insert(event, CALENDAR_ID);
        console.log(response);
      } catch (exception) {
        console.log(exception.message);
      }
    }
    

    Replace the following:

    • CALENDAR_ID: Email address of the calendar to retrieve and create events on. This constant is initially set to 'primary', which is a keyword to access the primary calendar of the signed-in user. Changing this value lets you read events on the calendars of other users you have access to.
    • EVENT_ID: Id of the event. You can call the Events:list to retrieve event ids.

Run the code sample

  1. Above the code editor, select the function to run from the drop-down menu, and click Run.
  2. In the first execution, it prompts you to authorize access. Review and allow Apps Script to access your calendar.
  3. You can inspect the results of the script execution in the Execution Log that appears at the bottom of the window.