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

> Delete several items from a Slack List.

`slack.deleteListItems` permanently deletes several List items in one request.

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

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

  slack.deleteListItems({
    listId: "F012ABCD3EF",
    itemIds: ["Rec012ABCD3E", "Rec012ABCD4F"],
  })
})
```

## Inputs

| Input     | Type       | Required | Description                     |
| --------- | ---------- | -------- | ------------------------------- |
| `listId`  | `string`   | Yes      | List containing the items.      |
| `itemIds` | `string[]` | Yes      | One or more item IDs to delete. |

## Output

Returns `Signal<void>`.
