Flowable Spring Boot Starter Rest

Hi,

I used the following example for Github: https://github.com/flowable/flowable-examples/tree/master/spring-boot-example

I created a few users and privilges and deployed a process. I am now trying to access the http URL to call the ReST API (supposedly) embedded within my Spring Boot Application.

I am unablke to find the right context-path. If my application is deployed on localhost:8787, what is the right URL to access “repository/deployments”?

Thanks.

Sunil

Try: http://localhost:8787/process-api/repository/deployments

See the README in the root of the example for the endpoints.

1 Like

I had trouble with this as well. I found that the process servlet which provides the endpoints in my application was not being loaded. To fix this I found properties:

flowable.process.servlet.load-on-startup=1
flowable.process.servlet.path=/process-api
flowable.rest.app.admin.user-id=rest-admin
flowable.rest.app.admin.password=rest-admin
flowable.rest.app.admin.first-name=Rest
flowable.rest.app.admin.last-name=Admin

Which are listed in the readme’s list of properties, if I had actually read it :slight_smile: