Hi,
Is there any Java REST client available for invoking REST APIs of the camunda server?
Few APIs that I am currently using are:
- DMN deployment (POST /deployment/create)
- DMN redeployment (POST /deployment/{id}/redeploy)
- DMN evaluation (POST /decision-definition/key/{key}/evaluate)
Hi, I’m a bit confused by the question, but Camunda has a robust REST API which is documented here https://docs.camunda.org/manual/latest/reference/rest/. The APIs that you referenced are also included.
Camunda also has an internal “Java API” that can be accessed using java code in a java delegate for example, and documentation can be found here https://docs.camunda.org/javadoc/camunda-bpm-platform/7.13/.
If this is not what you’re looking for, can you please elaborate on your question.
If you are looking for a Java library that wraps the REST API calls, there is some discussion here that might be helpful as well Would anyone like a Camunda Java REST client library?