Documentation IndexFetch the complete documentation index at: /llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Add an emoji reaction to a Slack message.
addReaction
import { automation } from "automate.ax" import { addReaction, onMessagePosted } from "automate.ax/slack" export default automation("Acknowledge Slack messages", () => { const posted = onMessagePosted() addReaction({ conversationId: posted.conversationId, emoji: "eyes", timestamp: posted.message.timestamp, }) })
conversationId
string
timestamp
emoji
eyes
account
string | IntegrationAccountReference<"slack">
Signal<void>