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

# Get List item

> Get one Slack List item and its subtasks.

`slack.getListItem` gets one List record and any subtasks beneath it.

```ts automations/get-release-item.automation.ts theme={null}
import { automation, onDashboardRun } from "automate.ax"
import { slack } from "automate.ax/slack"

export default automation("Get release item", () => {
  onDashboardRun({ title: "Get release item" })

  slack.getListItem({
    listId: "F012ABCD3EF",
    itemId: "Rec012ABCD3E",
    includeSubscription: true,
  })
})
```

## Inputs

| Input                 | Type      | Required | Description                          |
| --------------------- | --------- | -------- | ------------------------------------ |
| `listId`              | `string`  | Yes      | List containing the item.            |
| `itemId`              | `string`  | Yes      | Item to retrieve.                    |
| `includeSubscription` | `boolean` | No       | Asks Slack to return `isSubscribed`. |

## Output

Returns `{ item, list, subtasks }`. Item fields preserve Slack's typed cell values, including normalized message and reference metadata. `list.metadata` includes the column schema needed to interpret those fields.
