> ## Documentation Index
> Fetch the complete documentation index at: https://docs.blinkops.com/llms.txt
> Use this file to discover all available pages before exploring further.

# List Calendars

Returns the calendars on the user's calendar list.

<Note>
  External Documentation

  To learn more, visit the [Google Calendar documentation](https://developers.google.com/calendar/api/v3/reference/calendarList/list).
</Note>

## Basic Parameters

<div className="integrations-table">
  | 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.                                                                                      |
</div>

## Advanced Parameters

<div className="integrations-table">
  | Parameter               | Description                                                                                                                                                                                                                                                                                                                                                                                                              |
  | ----------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ |
  | Delegated User Override | Perform the action on behalf of another user, overriding the delegated user defined in the connection.<br /><br />If not specified, the delegated user is the one provided in the connection.<br /><br />Has no effect when using an OAuth connection.<br /><br />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.<br /><br />Acceptable values are:<br /><br />`Free busy reader`: The user can read free/busy information.<br /><br />`Owner`: The user can read and modify events and access control lists.<br /><br />`Reader`: The user can read events that are not private.<br /><br />`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.                                                                                                                                                                                                                                                                                                                                                                                          |
</div>

## Example Output

```json theme={"dark"}
{
  "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](https://library.blinkops.com/workflows/list-calendars-with-google-calendar-and-send-results-via-email)

<div className="iframe-wrapper">
  <div className="iframe-media">
    <img src="https://mintcdn.com/blinkops-2/ojHYuDeYX5FWuN8a/img/Icons/play-box.svg?fit=max&auto=format&n=ojHYuDeYX5FWuN8a&q=85&s=b8af968e71438a9499c3223c9bd29fb2" alt="Workflow Library" width="16" height="16" data-path="img/Icons/play-box.svg" />

    Preview this Workflow on desktop
  </div>

  <iframe className="iframe" src="https://library.blinkops.com/workflows/list-calendars-with-google-calendar-and-send-results-via-email/canvas" />
</div>
