Reputation: 11
I have added a web hook from desktop moduler for start event. What will be url for it in camunda self managed local environment
Read the documentation. But didn't find any reference for base url
Upvotes: 1
Views: 526
Reputation: 2183
For Camunda 8: If the process definition was deployed to the cluster, you can click again on the WebHook connector node in the modeler and select the Webhook tab in the Details pane.
The active webhook URL is hidden under the "Webhook is active in cluster" accordion UI element.
Upvotes: 0
Reputation: 19
Base URL is basically the connectors runtime url, mostly in local environment it is:
https(s)://localhost:8085/inbound/webhook ID
Upvotes: 0
Reputation: 1
URLs of the exposed HTTP Webhooks follow this pattern:
http(s)://<base URL>/inbound/<webhook ID>>
More can be found here -> https://docs.camunda.io/docs/components/connectors/out-of-the-box-connectors/http-webhook/
Upvotes: 0