> ## 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 JobNimbus task related to CRM records.

`jobNimbus.createTask` create a JobNimbus task related to CRM records.

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

export default automation("Create task", () => {
  onDashboardRun({ title: "Create task" })
  jobNimbus.createTask({
    dateStart: new Date("2026-09-01T16:00:00Z"),
    recordTypeName: "Task",
    related: [{ id: "job-id" }],
    title: "Call homeowner",
  })
})
```

## Inputs

Provide `title`, `recordTypeName`, and `dateStart` as a `Date` or Unix seconds. Optional fields include end date, owners, related record IDs, priority, tags, completion, and description. Optional second argument `{ account }` selects a named JobNimbus binding.

## Output

Returns the created `JobNimbusTask`; legacy Unix timestamps become JavaScript `Date` values.
