Slack

Send notifications and messages to Slack channels directly from your workflows.

Set up the integration

  1. Create an Incoming Webhook in your Slack workspace (from the Slack apps configuration).
  2. Copy the webhook URL generated by Slack.
  3. In your workflow, add a "Webhook Call" node and paste the Slack URL.
  4. 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.
Documentation | Gloo Platform by SYNOV