Integration with flowable rest

I am integrating flow engine and rest api into my application.

I have below dependencies in my code
`

    <dependency>
	    <groupId>org.flowable</groupId>
	    <artifactId>flowable-engine</artifactId>
	    <version>6.5.0</version>
	</dependency>
        `
	<dependency>
		<groupId>org.flowable</groupId>
		<artifactId>flowable-rest</artifactId>
		<version>6.5.0</version>
	</dependency>
	<dependency>
		<groupId>org.flowable</groupId>
		<artifactId>flowable-spring-boot-starter-rest</artifactId>
		<version>6.5.0</version>
	</dependency>	
	<dependency>
		<groupId>org.flowable</groupId>
		<artifactId>flowable-spring-boot-starter-basic</artifactId>
		<version>6.5.0</version>
	</dependency>`	

I am trying to deploy an app from flowable modeler using this application, but I am getting 401 error.
I have this property in modeler to connect to my service

flowable.modeler.app.deployment-api-url=http://myserver.com/flowable-service

Is there any way I can disable the authentication from the rest apis or how can I make it working? I am not sure if I am missing any settings?

Hey @prashant,

It looks like your configuration is not correct. The flowable.modeler.app.deployment-api-url should look like: http://myserver.com/<contextPath>/app-api

Cheers,
Filip