slack.deleteListItem permanently deletes one List item.
automations/delete-list-item.automation.ts
Inputs
Output
ReturnsSignal<void>.Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Delete one item from a Slack List.
slack.deleteListItem permanently deletes one List item.
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" })
})
| Input | Type | Required | Description |
|---|---|---|---|
listId | string | Yes | List containing the item. |
itemId | string | Yes | Item to delete. |
Signal<void>.