slack.removeBookmark removes one conversation bookmark.
Example
automations/remove-bookmark.automation.ts
Inputs
Requires the containingconversationId and stable bookmarkId.
Output
Completes without a value. Requiresbookmarks:write.Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Remove a bookmark from a Slack conversation.
slack.removeBookmark removes one conversation bookmark.
import { automation, onDashboardRun } from "automate.ax"
import { slack } from "automate.ax/slack"
export default automation("Remove bookmark", () => {
onDashboardRun({ title: "Remove bookmark" })
slack.removeBookmark({
conversationId: "C01234567",
bookmarkId: "Bk01234567",
})
})
conversationId and stable bookmarkId.
bookmarks:write.