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

> Create a lead or outgoing-call Close task.

`close.createTask` create a lead or outgoing-call Close task.

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

export default automation("Create task", () => {
  onDashboardRun({ title: "Create task" })
  close.createTask({
    type: "lead",
    leadId: "lead_abc123",
    text: "Qualify this lead",
    priority: "high",
  })
})
```

## Inputs

For `type: "lead"`, provide `leadId` and non-empty `text`. For `type: "outgoing_call"`, provide `leadId` and `contactId`. Optional fields include assignment, dates, completion, priority (`high` or `medium`), and dateless state. Optional second argument `{ account }` selects a named Close binding.

## Output

Returns the created `CloseTask`. Close reports outgoing-call webhook events under the `task.outbound_call` event subtype.
