> ## 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 account

> Retrieves the connected TidyCal account profile.

`tidyCal.getAccount` retrieves the identity and scheduling profile behind the selected connection.

```ts automations/get-tidycal-account.automation.ts theme={null}
import { automation, onDashboardRun } from "automate.ax"
import { tidyCal } from "automate.ax/tidycal"

export default automation("Get TidyCal account", () => {
  onDashboardRun({ title: "Get TidyCal account" })
  tidyCal.getAccount({})
})
```

The action takes no input. An optional second argument `{ account }` selects a static project account binding. It returns the account's name, email, vanity path, language, profile picture URL, currency symbol, and nullable lifetime-plan date.
