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 anEvents:list
call to list events of specific types. If no type is specified, all event types will be returned.eventTypes
can be specified in anEvents: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 an annual recurrence.
Users can manually create birthday events on Google Calendar. In addition, the birthday information syncs with Google Calendar when users add a person and include their birthday and other significant dates in Google Contacts. Users' own birthday is also synced to Google Calendar from their Google Account profile.
Google Calendar API supports get
,
instances
, and
list
methods for reading birthday
events. eventTypes
can be
set to 'birthday'
to list only birthday events. If no type is specified,
birthdays will be listed alongside all other event types.
In the returned Event
objects, inspect the
birthdayProperties
field for more details about this special event. birthdayProperties
has the
following fields:
type
: Type of this special event, whether it's a birthday, an anniversary, or another significant date.customTypeName
: User-specified label for this special event. This is populated iftype
is set to'custom'
.contact
: Resource name of the contact this special event is linked to, if any. This has the format'people/c12345'
and can be used to fetch contact details from the People API.
The API allows creating birthday events using the
insert
method with the following
specifications:
eventType
is set to'birthday'
.start
andend
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
andreminders
. - Can have
birthdayProperties
. If specified,type
must be'birthday'
, and bothcustomTypeName
andcontact
must be empty. - Cannot have any other event properties.
The API allows updating the
colorId
,
summary
and
reminders
of birthday
events using the update
and patch
methods.
start
and
end
fields can also be updated
to change the event date. In this case, the new values need to define an all-day
event which spans exactly one day. Timing details of a birthday event cannot be
updated if the event is linked to a
contact
, or
its type
is
'self'
.
Google Calendar API doesn't allow creating birthday events with custom
birthdayProperties
, or
updating these properties. Significant dates can be edited with the
People API, and the changes are synced with
Google Calendar. Similarly, users can edit their own birthday on their
Google Account profile, and it syncs
with Google Calendar.
Requests that try to create or update a birthday in an unsupported way will fail. In this case, inspect the error message to identify the issue.
The API supports import
operation
for birthday events; however, the event will be imported as a default event. In
other words, the eventType
will
be 'default'
.
The API supports the watch
method
to subscribe to changes on birthday events on Google Calendar.
eventTypes
can be set to
'birthday'
to subscribe to updates on birthday events. If no type is
specified, all event types, including birthdays, will be subscribed to.
Birthday events can be deleted using the
delete
method of the
Google Calendar API. Deleting a birthday event from Google Calendar doesn't
affect data on Google Contacts or
Google Account profile.
Changing the organizer of a birthday event using
move
or
update
methods is not supported.
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
,
attendees
,
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
- Create a script by going to script.google.com/create.
- On the left pane next to Services, click Add a service .
- Select Google Calendar API and click Add.
- 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.
Paste the following into the code editor.
const CALENDAR_ID = 'CALENDAR_ID' || 'primary'; /** Lists default events. */ function listDefaultEvents() { listEvents('default'); } /** Lists birthday events. */ function listBirthdays() { listEvents('birthday'); } /** 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 birthday event. */ function createBirthday() { const event = { start: { date: '2024-01-29' }, end: { date: '2024-01-30' }, eventType: 'birthday', recurrence: ["RRULE:FREQ=YEARLY"], summary: "My friend's birthday", transparency: "transparent", visibility: "private", } 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
- Above the code editor, select the function to run from the drop-down menu, and click Run.
- In the first execution, it prompts you to authorize access. Review and allow Apps Script to access your calendar.
- You can inspect the results of the script execution in the Execution Log that appears at the bottom of the window.