How to Create an Endpoint URL for Handling Webhook Notifications in UiPath?

Hello there, I’m looking to integrate incoming webhook notifications into my UiPath workflows, but I’m unsure of how to create the endpoint URL that will receive these webhook notifications. Could someone guide me on how to create and set up an endpoint URL for handling webhook notifications in UiPath? Does UiPath Provide a URL or Endpoint for Receiving Webhook Notifications? here is the code
It is clickup api, create webhook
curl -i -X POST
https://api.clickup.com/api/v2/team/{team_id}/webhook
-H ‘Authorization: YOUR_API_KEY_HERE’
-H ‘Content-Type: application/json’
-d ‘{
“endpoint”: “https://yourdomain.com/webhook”,
“events”: [
“taskCreated”,
“taskUpdated”,
“taskDeleted”,
“taskPriorityUpdated”,
“taskStatusUpdated”,
“taskAssigneeUpdated”,
“taskDueDateUpdated”,
“taskTagUpdated”,
“taskMoved”,
“taskCommentPosted”,
“taskCommentUpdated”,
“taskTimeEstimateUpdated”,
“taskTimeTrackedUpdated”,
“listCreated”,
“listUpdated”,
“listDeleted”,
“folderCreated”,
“folderUpdated”,
“folderDeleted”,
“spaceCreated”,
“spaceUpdated”,
“spaceDeleted”,
“goalCreated”,
“goalUpdated”,
“goalDeleted”,
“keyResultCreated”,
“keyResultUpdated”,
“keyResultDeleted”
],
“space_id”: 1234,
“folder_id”: 5678,
“list_id”: 9876,
“task_id”: “abc1234”
}’

@Zehra
To create an endpoint URL for handling webhook notifications in UiPath, you’ll need to deploy a service capable of receiving HTTP requests. This could be a web server or a serverless function, depending on your preference and requirements. Once deployed, you can use the endpoint URL provided by your service in place of "https://yourdomain.com/webhook" in the code snippet you provided. This URL will then receive the webhook notifications from ClickUp API.

Thank you for your response. I understand that I need to deploy a service capable of receiving HTTP requests to create an endpoint URL for handling webhook notifications in UiPath. However, I’m curious if there’s a way within UiPath itself to create or obtain this URL without relying on external services.

Specifically, I would like to know:

  1. Does UiPath provide any built-in functionality or tools within UiPath Orchestrator or other UiPath platforms that allow users to create endpoint URLs for receiving webhook notifications?
  2. Are there any UiPath activities or features that facilitate the creation or management of webhook endpoints within UiPath workflows?

I appreciate any additional information or guidance on how UiPath users can create and manage webhook endpoints directly within the UiPath ecosystem.

Thank you for your assistance!

@Zehra

UiPath provides both native webhooks in Orchestrator and the HTTP Webhook Connector for seamless integration with external systems. Please go through this document once.