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

# Delete List item

> Delete one item from a Slack List.

`slack.deleteListItem` permanently deletes one List item.

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

export default automation("Delete List item", () => {
  onDashboardRun({ title: "Delete List item" })

  slack.deleteListItem({ listId: "F012ABCD3EF", itemId: "Rec012ABCD3E" })
})
```

## Inputs

| Input    | Type     | Required | Description               |
| -------- | -------- | -------- | ------------------------- |
| `listId` | `string` | Yes      | List containing the item. |
| `itemId` | `string` | Yes      | Item to delete.           |

## Output

Returns `Signal<void>`.
