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

> Create a contact on a Close lead.

`close.createContact` create a contact on a Close lead.

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

export default automation("Create contact", () => {
  onDashboardRun({ title: "Create contact" })
  close.createContact({
    leadId: "lead_abc123",
    name: "Ada Lovelace",
    emails: [{ email: "ada@acme.example", type: "office" }],
  })
})
```

## Inputs

Provide `leadId` to attach the contact to a lead. Optional fields include `name`, `title`, `timezone`, emails, phones, URLs, and `customFields` keyed by `cf_...`. Optional second argument `{ account }` selects a named Close binding.

## Output

Returns the created `CloseContact`.
