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

# Quick-add event

> Create a Google Calendar event from natural-language text.

`quickAddEvent` asks Google Calendar to interpret a short natural-language
description. Use it for human-authored convenience input; use `createEvent` for
deterministic schedules and structured fields.

## Example

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

export default automation("Quick-add lunch", () => {
  onHttpRequest({ scope: "automation" })

  quickAddEvent({
    calendar: "Personal",
    text: "Lunch with Ada next Tuesday at noon",
  })
})
```

## Inputs

`text: string` is required. `calendar?: string` defaults to primary and
`account` selects the Google account. All fields accept compatible signals.

## Output

Returns Google's parsed `CalendarEvent`; see [Get event](/reference/integrations/google-calendar/actions/get-event#output). Parsing follows the selected account's Calendar locale and timezone and can be ambiguous, so inspect the returned `start` and `end` before using them for high-stakes scheduling.
