slack.deleteListAccess revokes access for channels or users.
automations/unshare-release-list.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.
Revoke channel or user access to a Slack List.
slack.deleteListAccess revokes access for channels or users.
import { automation, onDashboardRun } from "automate.ax"
import { slack } from "automate.ax/slack"
export default automation("Unshare release List", () => {
onDashboardRun({ title: "Unshare release List" })
slack.deleteListAccess({
listId: "F012ABCD3EF",
subject: { type: "users", ids: ["U012ABCD3EF"] },
})
})
| Input | Type | Required | Description |
|---|---|---|---|
listId | string | Yes | List whose access changes. |
subject | { type: "channels" | "users"; ids: string[] } | Yes | One or more channels or users. |
Signal<void>.