slack.updateListItems updates several cells in one Slack Lists API request.
automations/complete-list-item.automation.ts
Inputs
Cell field types and values match Create List item.
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 one or more cells across Slack List items.
slack.updateListItems updates several cells in one Slack Lists API request.
import { automation, onDashboardRun } from "automate.ax"
import { slack } from "automate.ax/slack"
export default automation("Complete List item", () => {
onDashboardRun({ title: "Complete List item" })
slack.updateListItems({
listId: "F012ABCD3EF",
cells: [
{
rowId: "Rec012ABCD3E",
columnId: "ColComplete",
type: "checkbox",
value: true,
},
],
})
})
| Input | Type | Required | Description |
|---|---|---|---|
listId | string | Yes | List containing the records. |
cells | (SlackListItemField & { rowId: string })[] | Yes | One or more typed cell updates. |
Signal<void>.