EzFlowEzFlow Docs
Node referenceTriggers

SLACK_TRIGGER

Trigger: fires when your Slack app is mentioned or receives an event.

What it does

Trigger: fires when your Slack app is mentioned or receives an event.

Inputs & outputs

Input handle
None
Output handle
text
userId
channelId
threadTs
eventType
isMention
timestamp

Configuration

NameTypeRequired
workspaceIdstringYes
eventType'app_mention' | 'message' | 'reaction_added' | 'slash_command'Yes

Example

Example

Your support team uses a Slack workspace for customer escalations. Connect the workspace to EzFlow, set eventType to app_mention, and the Workflow fires every time someone @-mentions your bot in a channel. The text output carries the message body, userId identifies who sent it, and channelId together with threadTs let a downstream SEND_SLACK node reply in the same thread. Chain an LLM_COMPLETION node between the trigger and the reply to generate an AI-drafted response before posting it back.

On this page