The Slack node allows you to send messages directly into Slack channels using Incoming Webhooks.
This is typically used for:
Notifications (e.g., “New order received”)
AI summaries (e.g., output from OpenAI/Gemini)
Alerts and monitoring
Workflow updates
Unlike other integrations, Slack does not use API keys here.
Instead, you only need:
👉 A Slack Webhook URL
Follow this carefully — most errors come from incorrect webhook setup.
Visit: https://api.slack.com/apps
Click Create New App
Choose From scratch
Give your app a name (e.g., Syncaut Bot)
Select your Slack workspace
Click Create App
Inside your app dashboard
Click Incoming Webhooks (left sidebar)
Toggle Activate Incoming Webhooks → ON
Scroll down to Webhook URLs for Your Workspace
Click Add New Webhook to Workspace
Choose the channel where messages should be sent
Example: #general, #alerts, #automation
Click Allow
After authorization, you’ll get a URL like this:
https://hooks.slack.com/services/T00000000/B00000000/XXXXXXXXXXXXXXXX
👉 Copy this URL — this is what you’ll paste into Syncaut.
This URL is secret
Anyone with it can send messages to your Slack
Do NOT expose it publicly
This is how you reference the result later.
Example:
mySlack
Usage:
{{mySlack.messageContent}}
Paste the webhook URL you copied from Slack.
Example:
https://hooks.slack.com/services/...
This is the message that will be sent to Slack.
You can use variables from previous nodes.
Example:
New order received!
Customer: {{shopify.data.customer.email}}
Total: {{shopify.data.total_price}}
The Slack node supports dynamic templating:
{{variable}} → simple values
{{json variable}} → full JSON output
Example:
Summary:
{{myGemini.text}}
Your message is compiled using variables (Handlebars)
The final text is sent to Slack via webhook
Slack receives it instantly in the selected channel
The result is stored in your variable
After execution:
{{mySlack.messageContent}}
Send AI-generated summaries to Slack
Notify team of new Shopify orders
Alert on failed workflows
Send daily reports
➡️ You didn’t paste the webhook URL
✔️ Fix: Add it in the node config
➡️ Wrong channel or webhook revoked
✔️ Fix:
Recreate webhook
Ensure correct channel selection
➡️ URL is malformed or deleted
✔️ Fix: Generate a new webhook
Use a dedicated Slack channel for automation
Keep messages short and readable
Use variables to make messages dynamic
Never expose your webhook URL
Rotate webhook if compromised
The Slack node is one of the simplest but most powerful integrations — it turns your workflows into real-time communication systems.
Navigate