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

> ## Agent Instructions
> Automate.ax automations are TypeScript programs.
> Use Bun for installation and command examples.
> Use Automate.ax for the product name and automate.ax for the package, CLI, and domain.
> Treat documented public APIs as current; do not invent transitional or deprecated names.

# Get calendar-list entry

> Get user-specific display and subscription settings for a Google Calendar.

`getCalendarListEntry` loads how one accessible calendar appears for the
connected user, including colors, visibility, reminders, and notifications.

## Example

```ts theme={null}
import { automation, onHttpRequest } from "automate.ax"
import { getCalendarListEntry } from "automate.ax/google-calendar"

export default automation("Inspect a calendar subscription", () => {
  onHttpRequest({ scope: "automation" })

  getCalendarListEntry({ calendar: "Team Calendar" })
})
```

## Inputs

`calendar: string` is required. `account` optionally selects the Google account.

## Output

Returns a `Calendar` including list-specific `backgroundColor`,
`foregroundColor`, `colorId`, `hidden`, `selected`, `summaryOverride`,
`defaultReminders`, `notifications`, `accessRole`, `primary`, and `deleted`, in
addition to the metadata described by [Get calendar](/reference/integrations/google-calendar/actions/get-calendar#output).
