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

# Create contact

> Creates a TidyCal contact.

`tidyCal.createContact` creates a contact independently of a booking.

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

export default automation("Create TidyCal contact", () => {
  onDashboardRun({ title: "Create TidyCal contact" })
  tidyCal.createContact({
    name: "Ada Lovelace",
    email: "ada@example.com",
    timezone: "Europe/London",
  })
})
```

`name` and `email` are required; `timezone` is optional. The result is the created contact. TidyCal can return `402` when the account's plan does not permit contact creation.
