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

> Create or copy a checklist on a Trello card.

`createChecklist` creates an empty checklist or copies an existing checklist and its items.

```ts automations/create-trello-checklist.automation.ts theme={null}
import { automation, onHttpRequest } from "automate.ax"
import { createChecklist } from "automate.ax/trello"

export default automation("Create Trello checklist", () => {
  onHttpRequest({ scope: "automation" })
  createChecklist({ card: "card-id", name: "Launch", position: "bottom" })
})
```

`card` is required. `name` and `sourceChecklistId` are optional; `position` accepts `"top"`, `"bottom"`, or a nonnegative number and defaults to `"bottom"`; optional `account` defaults to the project binding. When copying, Trello controls how `name` interacts with the source name.

Returns the created `TrelloChecklist`, including any copied `checkItems` supplied by Trello.
