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
PRODUCT

Webhooks & Conductor - Perfect Duo for Automation

Riza Farheen
Riza Farheen
Developer Advocate
Last updated: May 31, 2023
May 31, 2023
8 min read

Related Blogs

Fail Fast, Recover Smart: Timeouts, Retries, and Recovery in Orkes Conductor

May 12, 2025

Fail Fast, Recover Smart: Timeouts, Retries, and Recovery in Orkes Conductor

Task-Level Resilience in Orkes Conductor: Timeouts and Retries in Action

May 12, 2025

Task-Level Resilience in Orkes Conductor: Timeouts and Retries in Action

Workflow-Level Resilience in Orkes Conductor: Timeouts and Failure Workflows

May 12, 2025

Workflow-Level Resilience in Orkes Conductor: Timeouts and Failure Workflows

Ready to Build Something Amazing?

Join thousands of developers building the future with Orkes.

Start for free

In the modern digital era, applications are the staple to everything, from ordering foods to automating subscriptions. To truly tackle the power of applications, seamless communication and real-time data updates between them are crucial.

Sharing real-time data updates between applications simplifies business processes, eliminates manual intervention, and synchronizes information instantly. It allows to maintain accurate inventory levels, provide proper customer support, and ensure a seamless customer experience.

While traditional API methods can enable communication between applications, Webhooks offer a perfect solution when it comes to real-time updates. Webhooks function as event-driven triggers initiating communication and sharing information between the applications. Instead of constantly polling for updates, Webhooks allow applications to notify instantly when an event triggers.

Orkes Conductor, built over the battle-tested Conductor OSS, is a platform for building distributed applications 10x faster. With Conductor-Webhook integration, we can seamlessly connect Conductor with other applications.

In this blog post, let’s dive deeper into the power of Webhooks and discover how they can revolutionize the way our applications communicate and collaborate.

Orchestrating Workflows/Applications with Webhooks

Webhook is an HTTP-based callback function that facilitates the communication between Conductor and other third-party systems. It can be used to receive data from other applications to the Conductor.

Webhook can be used with Conductor in 2 different ways.

  1. We can start a workflow on receiving an event from other applications via Webhook.
  2. We can start a task inside a workflow on receiving an event from external applications.

Example Workflow

Let’s see an example workflow that receives an event from Postman.

Step 1 - Create a Workflow with Webhook Task

Initially, we need to create a workflow in Conductor with the “WAIT_FOR_WEBHOOK” task. For this, navigate to Definitions > Workflow from Conductor UI, and click Define Workflow.

Creating a workflow with webhook task

Add the WAIT_FOR_WEBHOOK task at the point where we want to receive an event from Webhook. When the workflow reaches this point, it waits for the Webhook event. Ensure to provide the input matches as per our requirement. Matches act as the correlation between the incoming Webhook events and running workflows to find the instance that should be updated based on the payload from the event.

In this example, We’ve defined the input matches as follows:

json
"inputParameters": {
       "matches": {
         "$['data']['recipientId']": "${workflow.input.recipientId}"
       }
    },

Let’s say there are 1000 running instances of a workflow with different recipient IDs; when an incoming Webhook request comes, it will find and match //data/recipientId field from the incoming message’s JSON with the running workflow, find the matching instance and mark that particular workflow instance’s task as completed.

Step 2 - Create a Webhook in Conductor

Next, let’s create a webhook in Conductor.

We can create a Webhook by navigating to the Webhooks option from the left menu.

Creating new webhook for integration

Provide a Webhook name. Under the field Workflows To Receive Webhook Event, we must provide the workflow name, which includes the Webhook task. So, this is the case where a task within a workflow begins with events received from Webhook.

We can choose a source platform from the Conductor-supported list. In this example, we are sending the request from Postman, so let's choose the platform as Custom. Provide a header key and value.

While creating a Webhook, there is an option to run other workflows on receiving the Webhook event. This is the case where a workflow is triggered on receiving a webhook event.

Webhook with URL unverified

Saving the Webhook generates the URL, which will be “Unverified”.

The verification process of the Webhook URLs depends on the supported verification methods from Conductor. The Custom type is header-based verifiers, where the URL is verified when the first Webhook event comes with all the header keys and values configured.

Step 3 - Run Workflow

Let’s run the workflow now!

From the Conductor UI left menu, click Run Workflow.

Running Webhook workflow from UI

Click on the workflow (execution) ID generated to view the execution.

Workflow execution in running state

It is clear from the workflow diagram that the workflow is now waiting for the Webhook event.

Step 4 - Send Request from Postman

Next, send the request from the Postman. Create a new request, provide the Webhook URL, and change the method to POST.

Provide the header key and value, and the input matches in JSON format. Click Send, and it should return a 200 OK, meaning it was sent successfully.

Sending post request from Postman

Now, if we return to the Webhook, we can verify that the event has been received. This triggers the workflow in which the Webhook task was added.

Webhook with verified URL

We can see that the URL has been verified now. And if we check the previous workflow execution, we can verify that it has been completed successfully.

Completed workflow execution

We have also configured to start the workflow “sample_triggered_workflow” on receiving this Webhook event. We can verify the same from the Executions > Workflow page.

Triggered workflow execution from Webhook event

Ta-da! We have successfully executed our workflow now!

Webhook Security Mechanism

Conductor allows securing the Webhook endpoints using different mechanisms. We support the incoming Webhooks over HTTPS with the following verification methods:

  1. Header Verification - Validated based on the predefined header and value.
  2. Signature Verification - Validated based on the payload signature, which requires configuring the secret and header key on the Conductor side. When the request comes, the Conductor will calculate the request payload hash and match it with the predefined header value.
  3. Challenge Verification - Validated when the third-party system sends a challenge request that the Conductor server responds to establish trust.

Check out our Webhook documentation to know more details on how the URLs are verified.

Out-Of-Box Webhook Integrations from Conductor

So far, we have understood the configuration steps and the security mechanism provided by Conductor. Now, let’s quickly look at the ready-to-use configurations from Conductor. Conductor supports the Webhook integration with the following third-party applications:

Supported integration platforms for Webhooks in Conductor

We can leverage the Custom option while creating a Webhook, for configuring integration with any other application.

Use Cases: Webhook as a Service

Conductor provides Webhook as a Service, where we can orchestrate different business use cases. This helps streamline the integration and communication between different systems, enabling automation within the organization.

Let’s have a quick look at various use cases:

External SystemIssues that can be solved using Conductor-Webhook Integration
GitHub
  • Enable automated alerts for newly created issues in the repository and establish a system for automated replies.
  • To trigger automated deployments whenever a new commit is pushed to the repository.
  • Triggering CI builds whenever changes are pushed to the repository.
Slack
  • Creating chatbots.
  • Employee onboarding.
  • Automating scrum updates.
  • Automating issue creation messages on support channels.
Stripe
  • Automatically email customers for failed payments.
  • Get notified when someone pays via the application.
Microsoft Teams
  • Notify the team in Microsoft Teams whenever a new deployment is initiated or completed.
  • Report issues identified during project execution directly into a Microsoft Teams channel for quick attention.

We built our daily stand-up bot for our engineering team using this integration. Employees post their updates in the application integrated with the Slack app, which is posted on the stand-up channel.

Standup bot created for Orkes engineering team

No more messing up with wrong channels, and no worries about missing the updates. That’s how our managers stay informed about the progress and activities of the engineering team.

Why don’t you try automating your daily activities like this using Conductor-Webhook integration?

Wrapping Up

In conclusion, Webhooks are an incredibly powerful tool that can be effectively leveraged to meet the business requirements. Integrating Webhooks with a robust platform like Orkes Conductor can unlock even greater potential to enhance business efficiency and productivity.


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.