Skip to main content

List Calendars

Returns the calendars on the user's calendar list.

External Documentation

To learn more, visit the Google Calendar documentation.

Basic Parameters

ParameterDescription
LimitMaximum number of entries returned on one result page. Valid range is 0-250.
Page TokenToken specifying which result page to return. The token is returned in the nextPageToken key when there are more records to return.
Return All PagesAutomatically fetch all resources, page by page.

Advanced Parameters

ParameterDescription
Delegated User OverridePerform the action on behalf of another user, overriding the delegated user defined in the connection.

If not specified, the delegated user is the one provided in the connection.

Has no effect when using an OAuth connection.

NOTE: the connection details are not edited by this input.
Minimum Access RoleThe minimum access role for the user in the returned calendars. The default is no restriction.

Acceptable values are:

Free busy reader: The user can read free/busy information.

Owner: The user can read and modify events and access control lists.

Reader: The user can read events that are not private.

Writer: The user can read and modify events.
Show DeletedWhether to include deleted calendars in the result.
Show HiddenWhether to show hidden entries.

Example Output

{
"kind": "calendar#calendarList",
"etag": etag,
"nextPageToken": string,
"nextSyncToken": string,
"items": [
{
"kind": "calendar#calendarListEntry",
"etag": etag,
"id": string,
"summary": string,
"description": string,
"location": string,
"timeZone": string,
"summaryOverride": string,
"colorId": string,
"backgroundColor": string,
"foregroundColor": string,
"hidden": boolean,
"selected": boolean,
"accessRole": string,
"defaultReminders": [
{
"method": string,
"minutes": integer
}
],
"notificationSettings": {
"notifications": [
{
"type": string,
"method": string
}
]
},
"primary": boolean,
"deleted": boolean,
"conferenceProperties": {
"allowedConferenceSolutionTypes": [
string
]
}
}
]
}

Workflow Library Example

List Calendars with Google Calendar and Send Results Via Email

Workflow LibraryPreview this Workflow on desktop