What are you looking for?

Send Slack Messages direct from Camunda Cloud

By
  • Blog
  • >
  • Send Slack Messages direct from Camunda Cloud

This article is the fourth in a series exploring fun, straightforward ways you can control workflows using Camunda Cloud — have a read of the others for some background if you’d like to see Camunda Cloud in action with Restzeebe, without a line of code:


Do you use Slack? How about adding a level of automation to this widely used collaboration tool, that is making email obsolete in many organizations?

Let’s say you already widely use Slack in your company and want to receive an active notification when a new user has registered to your service? You can create a new channel just for that purpose and all Slack users who are interested can join the channel. If you already have an onboarding process running you can simply add a new service task with the Slack worker and that’s it 😉

This use case sits within a wider portfolio of useful integrations that can be applied in many places, and it’s a really useful one to have in your toolkit.

What is needed?

Since we want to integrate with Slack you need a Slack Workspace. Navigate to your Slack Apps and create a new Slack app or use an existing one.

Slack Apps

Enable Incoming Webhooks and add a new webhook to a channel:

Incoming Webhooks

Implement Worker

The next step is to have a worker that sends messages to this Slack channel via the webhook that has been set up.

import { IncomingWebhook } from '@slack/webhook'
import { ZeebeController } from '../zeebe.controller'

const SLACK_WEBHOOK_BASE = 'https://hooks.slack.com/services'

export class SlackWorkerController {
  private webhook: IncomingWebhook | null = null

  constructor(private zeebeController: ZeebeController) {}

  public createWorker(taskType: string) {
    this.zeebeController.getZeebeClient().createWorker({
      taskType,
      taskHandler: async (job: any, complete: any, worker: any) => {
        const webhookid = job.customHeaders.webhookid
        const message = job.customHeaders.message

        const webhookurl = `${SLACK_WEBHOOK_BASE}/${webhookid}`
        this.webhook = new IncomingWebhook(webhookurl)

        try {
          await this.send(message)
          complete.success()
        } catch (error) {
          complete.failure('Failed to send slack message')
        }
      },
    })
  }

  private async send(message: string) {
    const slackMessage = {
      text: `🚀 ${message} 🚀`,
      mrkdwn: true,
      attachments: [
        {
          title: `Greetings from Rest Zeebe!`,
        },
      ],
    }

    if (this.webhook) {
      await this.webhook.send(slackMessage)
    } else {
      throw new Error(`Failed to initialize Slack Webhook`)
    }
  }
}

The worker uses the official Slack Node Client, which makes integration a breeze. The parameters set are the webhookId and the message. This allows the worker to be used in different places with different webhooks. The message could alternatively come from the process context, but that depends on how you want to use the service task.

A small process with the Slack Task

Small process with Slack task

The process gets more and more exciting when you integrate this service task into a larger context.

Happy Slacking! 😉


This blog was originally published on dev.to. If you like this great tutorial, follow Adam on TwitterLinkedIn or GitHub 

Start the discussion at forum.camunda.io

Try All Features of Camunda

Related Content

In part 2 of this series, learn why prompt engineering is key to getting the most out of generative AI models.
How can you tame complexity and act at scale in a complex and highly regulated industry? Barclays shares their story of how process orchestration helped them modernize.
Learn how to test various components of a process application in Camunda 8 using a blue-green technique to ensure a new component works as expected.