Orkes logo image
Product
Platform
Orkes Platform thumbnail
Orkes Platform
Orkes Agentic Workflows
Orkes Conductor Vs Conductor OSS thumbnail
Orkes vs. Conductor OSS
Orkes Cloud
How Orkes Powers Boat Thumbnail
How Orkes Powers BOAT
Try enterprise Orkes Cloud for free
Enjoy a free 14-day trial with all enterprise features
Start for free
Capabilities
Microservices Workflow Orchestration icon
Microservices Workflow Orchestration
Enable faster development cycles, easier maintenance, and improved user experiences.
Realtime API Orchestration icon
Realtime API Orchestration
Enable faster development cycles, easier maintenance, and improved user experiences.
Event Driven Architecture icon
Event Driven Architecture
Create durable workflows that promote modularity, flexibility, and responsiveness.
Human Workflow Orchestration icon
Human Workflow Orchestration
Seamlessly insert humans in the loop of complex workflows.
Process orchestration icon
Process Orchestration
Visualize end-to-end business processes, connect people, processes and systems, and monitor performance to resolve issues in real-time
Use Cases
By Industry
Financial Services icon
Financial Services
Secure and comprehensive workflow orchestration for financial services
Media and Entertainment icon
Media and Entertainment
Enterprise grade workflow orchestration for your media pipelines
Telecommunications icon
Telecommunications
Future proof your workflow management with workflow orchestration
Healthcare icon
Healthcare
Revolutionize and expedite patient care with workflow orchestration for healthcare
Shipping and logistics icon
Shipping and Logistics
Reinforce your inventory management with durable execution and long running workflows
Software icon
Software
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean leo mauris, laoreet interdum sodales a, mollis nec enim.
Docs
Developers
Learn
Blog
Explore our blog for insights into the latest trends in workflow orchestration, real-world use cases, and updates on how our solutions are transforming industries.
Read blogs
Check out our latest blog:
Conductor CLI Guide: Register, Run, Retry, and Recover Durable Workflows Without Leaving Your Terminal šŸ’»
Customers
Discover how leading companies are using Orkes to accelerate development, streamline operations, and achieve remarkable results.
Read case studies
Our latest case study:
Twilio Case Study Thumbnail
Orkes Academy New!
Master workflow orchestration with hands-on labs, structured learning paths, and certification. Build production-ready workflows from fundamentals to Agentic AI.
Explore courses
Featured course:
Orkes Academy Thumbnail
Events icon
Events
Videos icons
Videos
In the news icon
In the News
Whitepapers icon
Whitepapers
About us icon
About Us
Pricing
Get a demo
Signup
Slack FaviconDiscourse Logo icon
Get a demo
Signup
Slack FaviconDiscourse Logo icon
Orkes logo image

Company

Platform
Careers
HIRING!
Partners
About Us
Legal Hub
Security

Product

Cloud
Platform
Support

Community

Docs
Blogs
Events

Use Cases

Microservices Workflow Orchestration
Realtime API Orchestration
Event Driven Architecture
Agentic Workflows
Human Workflow Orchestration
Process Orchestration

Compare

Orkes vsĀ Camunda
Orkes vsĀ BPMN
Orkes vsĀ LangChain
Orkes vsĀ Temporal
Twitter or X Socials linkLinkedIn Socials linkYouTube Socials linkSlack Socials linkGithub Socials linkFacebook iconInstagram iconTik Tok icon
Ā© 2026 Orkes. All Rights Reserved.
Back to Blogs

Table of Contents

Share on:Share on LinkedInShare on FacebookShare on Twitter
Worker Code Illustration

Get Started for Free with Dev Edition

Signup
Back to Blogs
SOLUTIONS

How to Create Standup Bot Using Conductor-Slack Integration

Riza Farheen
Riza Farheen
Developer Advocate
Last updated: July 7, 2023
July 7, 2023
9 min read

Related Blogs

How to Build a Simple, Modular, and AI-Powered Fraud Detection Workflow

Jul 8, 2025

How to Build a Simple, Modular, and AI-Powered Fraud Detection Workflow

Automating Serialization/Deserialization Tests with Orkes Conductor and LLMs

May 29, 2025

Automating Serialization/Deserialization Tests with Orkes Conductor and LLMs

Automating Insurance Claims Processing with AI and Conductor

Apr 24, 2025

Automating Insurance Claims Processing with AI and Conductor

Ready to Build Something Amazing?

Join thousands of developers building the future with Orkes.

Start for free

Slack, the popular workplace communication platform, is winning hearts worldwide. However, its usage shouldn’t be limited to communications alone. There is more you can do with powerful integrations with other applications.

We used our product, ā€œOrkes Conductor,ā€ to automate our daily tasks in Slack. At Orkes, we solved two of our biggest challenges. We created our engineering teams' standup bot & our community channel’s welcome message through effective Slack integrations using Orkes Conductor.

In this blog post, we’ll have a walkthrough on how you can create a standup bot for posting daily updates on a Slack channel using Orkes Conductor. Orkes Conductor is a powerful orchestration platform for building distributed applications that makes it easy to incorporate integrations such as Slack in your applications seamlessly.

Creating Standup Bot

Let’s see how Orkes Conductor can be leveraged to build your standup bot.

Here is the overview of our standup bot:

  • The workflow is kicked off at a specific time (e.g., 10 AM) on weekdays.
  • The workflow sends a personalized message to each team member to provide an update.
  • Users provide an update to the bot.
  • The workflow waits for all the updates to arrive and waits for a specific time (e.g., 3 hours).
  • Once all the updates are given, or the timeout occurs, all the updates are collected and posted to a shared team channel.

Boom! You’re done with the updates! šŸ¤–

No more messing up with wrong channels; and the managers need not worry about missing the updates.

Let’s have a sneak peek at the most essential steps in building your Standup bot.

  1. Create a Workflow, Webhook & Scheduler in Orkes Conductor
  2. Create a Slack App to be integrated with your organization’s Slack Account

Creating Workflow

Let’s visualize the workflow.

Standup Bot Workflow

You can get the JSON file for the workflow here.

In this example, we have 2 users. They are the forks of a fork-join task. These forks run in parallel to complete the workflow. For each individual, a fork is to be added, where each fork includes a sub-workflow, which is nothing but incorporating another workflow within your main workflow.

Here’s how the workflow added as sub-workflow (individual_updates) looks like:

Individual Updates Workflow

You can get the JSON file for the workflow here.

When the main workflow is run, all the forks execute in parallel. So let’s see how each of the individual updates is processed.

  • The workflow begins with an HTTP task (send_welcome_message) that sends a welcome message to the user asking for daily updates.
    • You can specify the Slack account’s token as secret so that your confidential data is not exposed within the workflow definitions. workflow.secrets.slack_standup_token
  • It is followed by a do-while task (loopTask) that captures the user inputs. The loop condition is checked based on the webhook task (webhook_task), which captures incoming events from Slack.
    • For the webhook task, you need to create a Webhook inside Conductor that can listen to events from Slack.
  • A series of JSON JQ Transform tasks, then follow it.
    • jq_aggregate_updates - Used to aggregate updates from the user.
    • jq_convert_to_string - Used to convert the updates into CSV format.
    • append_user_name - Used to append the user name with updates.
  • The final output is posted to the Slack channel using an HTTP task (post_updates).
    • Specify the Slack channel where the update is to be posted. You can save the Slack channel name as a secret in Orkes Conductor so that your confidential data is not exposed within your workflow definition. workflow.secrets.slack_conductor_channel_url

You can add the above workflow as sub-workflows in the fork-join tasks depending on the number of employees in your team.

In addition, you can configure the main workflow so that all the sub-workflows added as forks can be marked as optional so that the workflow can complete without waiting for all the forks. This comes into use when employees are OOO, so their updates won’t be available.

If you want to collect all the updates within a certain time, such as, let’s say, within 3 hours, you can add a timeout for the individual_updates workflow of 10,800 seconds.

Creating Webhooks

You have seen that a webhook task is utilized to collect user updates. You need to create a Webhook inside Orkes Conductor by navigating to the Webhooks option from the left menu and choosing the platform as ā€œSlackā€. Choose the standup bot workflows created in the previous step. Now, a Webhook URL will be generated.

Webhook for Standup Bot

Scheduling Workflows

The workflow should be scheduled to run at the standup time. Suppose the standup time set by your organization is 10:00 AM PT every Mon-Fri. You can create a scheduler in the Conductor that ensures the workflow runs at the scheduled time.

A Scheduler can be created from your Conductor console by navigating to Scheduler > Definitions and providing the following CRON expression.

Scheduler for Standup Bot

This ensures that the workflow runs at 10:00 AM PT every Mon-Fri. The UI also displays the local browser time. While creating the scheduler, ensure to choose the workflow name & the corresponding version to be scheduled.

Sample JSON for the scheduler is as follows:

json
{
  "name": "standup",
  "cronExpression": "0 0 17 * * MON-FRI",
  "startWorkflowRequest": {
    "name": "standup_updates_main",
    "version": "1",
    "input": {}
  }
}

Creating Slack App

Next, you must create a Slack App to integrate with your company’s Slack account. For this, navigate to https://api.slack.com/apps & click Create an App.

  1. Provide an app name and pick your workspace where this app will be integrated.
  2. Next, move to Features > Incoming Webhooks and turn on Activate Incoming Webhooks.
  3. Then, move to Features > Event Subscriptions, and turn on Enable Events.
    • Provide your Webhook URL under the field Request URL.
    • Under Subscribe to bot events, click Add Bot User Event & add message.im.
  4. Then, navigate to Features > App Home, and under the Messages Tab, enable the option Allow users to send slash commands and messages from the messages tab.
  5. Finally, enable permissions for the Slack app by navigating to Features > OAuth & Permissions. Under Scopes > Bot Token Scopes, add chat:write permission.

Install App to Slack Workspace

Next, we must install this Slack app in your organization’s workspace.

  1. From Settings > Install App, click Install to Workspace.

Installing Slack App

  1. Choose the channel to where the app is to be installed.

Choose the channel where Slack App is to be integrated

Once the app is installed in your workspace, a Bot User OAuth Token will be generated. This is to be added as a secret in Conductor.

Configuration Updates to be made

If you want to try this in your Slack workspace, create the secrets with your values in your Conductor console.

  1. Navigate to Secrets from the left menu and create a new secret with a name; in this example, it is slack_standup_token, and the value is the OAuth token copied right now. The workflow definition specifies this secret value so that authorization will occur.
  2. You also need to create another token; in this example, it is slack_conductor_channel_url with the Webhook URL copied from Slack.

Have a look at the following images for a better understanding of where you can get these values:

Retrieving secret values

  1. In the main workflow definition, for each of the sub-workflows added for the users, replace the user_name & user_id with your employee details:
json
{
"name": "riza_updates",
"taskReferenceName": "riza_updates",
"inputParameters": {
"user_name": "Riza",
"user_id": "XXXXXXXXXX"// Go to Slack > View the profile > Click on three dots > Copy member ID
},
"type": "SUB_WORKFLOW",

Workflow Execution

Let’s execute the workflow and see how it runs. In the actual example, the workflow would be automatically triggered during the standup time.

Workflow Execution

So, the workflow is now waiting for the user’s update. Once the users open their Slack, they can see that the bot app has requested the update from the user.

User providing the updates to the Bot

Once the updates are posted, the user must send done towards the end. Instantly, the message would be posted on the standup channel.

Updates posted by the bot in the channel

On checking the workflow execution, you can see that the fork of this particular user is completed and is waiting for the updates from the other user. Once the second user posts the updates, the workflow gets completed.

Workflow execution completed

And weā€˜re done!

Here’s a video guide for the standup bot example:

Wrapping Up

We have successfully overcome one of our daily obstacles using powerful Conductor-Slack integration. Do you have similar challenges to be addressed? Orkes Conductor, built on the battle-tested Netflix Conductor, can help!

If you require any assistance or have any inquiries, please don't hesitate to contact our team on Community Slack. We are always available to support you with your requirements.

If you find the experience valuable, we would greatly appreciate it if you could give us a 🌟 on our Conductor repository!


Conductor is an enterprise-grade orchestration platform for process automation, API and microservices orchestration, agentic workflows, and more. Check out the full set of features, try it yourself using our Developer Edition sandbox, or get a demo of Orkes Cloud, a fully managed and hosted Conductor service.