'Connect to DMN and BPMN through REST API Camunda

I'm trying to connect to my DMN model and BPMN Model through Postman ,My DMN diagram in camunda looks as below enter image description here

I have Deployed it as below enter image description here

And im trying to access it through Postman as below enter image description here

The video i have referenced is Video Reference the only change i have is i'm working with latest camunda 8 and the latest camunda modeler 5.0.0

Any help, guidance or reference will be a great help



Solution 1:[1]

The REST API you are using only exists in Camunda 7 (https://docs.camunda.org/manual/7.17/reference/rest/). In Camunda 8 the underlying architecture is completely redesigned and applies CQRS. The APIs are documented here: https://docs.camunda.io/docs/apis-clients/public-api/

You may also find this helpful: https://github.com/camunda-community-hub/camunda-8-api-postman-collection

Directly evaluating a decision is only going to be possible in the next release. For now you need to use the DMN in a BPMN and start a process instance to evaluate the DMN via API. Here is an example doing this, incl. testing it: https://github.com/rob2universe/camunda8-testing

Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source
Solution 1