slack.updateList updates a List on a paid Slack workspace.
automations/rename-release-list.automation.ts
Inputs
Provide at least one property to update.
Output
ReturnsSignal<void>.Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Update a Slack List’s name, description, or task mode.
slack.updateList updates a List on a paid Slack workspace.
import { automation, onDashboardRun } from "automate.ax"
import { slack } from "automate.ax/slack"
export default automation("Rename release List", () => {
onDashboardRun({ title: "Rename release List" })
slack.updateList({ listId: "F012ABCD3EF", name: "Product launches" })
})
| Input | Type | Required | Description |
|---|---|---|---|
listId | string | Yes | Stable Slack List ID. |
name | string | No | New List name. |
descriptionBlocks | Slack rich-text blocks | No | New rich-text description. |
todoMode | boolean | No | Enables or disables Slack’s task fields. |
Signal<void>.