HI I just build the Spring Boot Starter example-web sample (https://github.com/camunda/camunda-bpm-examples/tree/master/spring-boot-starter/example-web)
-
I can get the process definition
http://localhost:8080/rest/engine/default/process-definition
[{“id”:“Sample:1:6e70bb39-e758-11e8-aab1-5efd57a1864a”,“key”:“Sample”,“category”:“http://camunda.org/schema/1.0/bpmn",“description”:null,“name”:“Sample”,“version”:1,“resource”:“BOOT-INF/classes/bpmn/sample.bpmn”,“deploymentId”:“6e316847-e758-11e8-aab1-5efd57a1864a”,“diagram”:null,“suspended”:false,“tenantId”:null,“versionTag”:null,"historyTimeToLive”:null}] -
but somehow I cannot start a process instance with a POST (basic auth) http://localhost:8080/rest/engine/default/process-definition/key/Sample/start
any idea about what I’m missing ?
Thx