Custom Camunda Endpoint

I have my own deployment service.

This service provides a POST Route at http://localhost:8888/deployment/create

When I provide the following data in the deployment dialog (see the following Screenshot) it works. However the displayed Error is annoying.

http://localhost:8888 returns 200 and a Text. What does the Modeler check and expect - that the check is successful?

What is the endpoint of the Camunda REST API?
It looks like you’re just pointing at a server but not at the REST API. You’d probably need to add
/engine-rest/ or /rest/ depending on the distro you’re using.

Hi @pme123,

As per the following git URL
https://github.com/camunda/camunda-modeler/blob/e9785a7542ed893a9f4ef1344105e1df77618224/client/src/plugins/camunda-plugin/shared/CamundaAPI.js

Below request is called to check the connection
/deployment?maxResults=0

& response status should be OK

2 Likes

@hassang Thanks that did the trick