Evaluating decision tables spring boot app and Postman

I have a working example with spring boot.

Im looking to evaluate the decision table directly via postman.

What are the prerequisites for evaluating decision tables directly.

First up… my Pom has these two dependencies

<dependency>
    <groupId>org.camunda.bpm.springboot</groupId>
    <artifactId>camunda-bpm-spring-boot-starter-webapp</artifactId>
    <version>${camduna.version}</version>
</dependency>
<dependency>
    <groupId>org.camunda.bpm.springboot</groupId>
    <artifactId>camunda-bpm-spring-boot-starter-rest</artifactId>
    <version>${camduna.version}</version>
</dependency>

Properties in application.yml look like

camunda.bpm:
  admin-user:
    id: admin
    password: admin
    firstName: Admin
  filter:
    create: All tasks
  history-level: FULL

server:
  port: 8088

My postman request looks like this

Tried both

My decision in the cockpit looks like this

Just wondering if I’m missing something?..

Hi @Rob_Davidson,

in spring-boot, the api listen to the url /rest.

so, http://localhost:8088/rest/decision-definition/dish:1:b95e3752-d78d-11e8-b8a4-029a327f680e/evaluate should be the one to go.

Cheers, Ingo

thanks that is the correct URL