Slack
Send notifications and messages to Slack channels directly from your workflows.
Set up the integration
- Create an Incoming Webhook in your Slack workspace (from the Slack apps configuration).
- Copy the webhook URL generated by Slack.
- In your workflow, add a "Webhook Call" node and paste the Slack URL.
- Configure the message body in JSON format with the content you want to send.
Message format
{
"text": "Nueva solicitud de {{nombre}}",
"blocks": [
{
"type": "section",
"text": {
"type": "mrkdwn",
"text": "*Solicitud:* {{tipo}}\n*Monto:* {{monto}}"
}
}
]
}Use cases
- Notify the team when a new request is received.
- Alert on process approvals or rejections.
- Send daily activity summaries.
- Notify about errors or exceptions in critical workflows.