List Calendars
Returns the calendars on the user's calendar list.
External Documentation
To learn more, visit the Google Calendar documentation.
Basic Parameters
Parameter | Description |
---|---|
Limit | Maximum number of entries returned on one result page. Valid range is 0-250. |
Page Token | Token specifying which result page to return. The token is returned in the nextPageToken key when there are more records to return. |
Return All Pages | Automatically fetch all resources, page by page. |
Advanced Parameters
Parameter | Description |
---|---|
Delegated User Override | Perform 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 Role | The 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 Deleted | Whether to include deleted calendars in the result. |
Show Hidden | Whether 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
Preview this Workflow on desktop