Send data to Camunda from Spring Boot

Hi pals,
I need to send data to a process made in Camunda, the process suposse to send a response with Allowed or Not Allowed depending the conditions , the question is what methods in Camunda REST API should fit for this requeriment?

Hi Mario, you can start a process using Camunda’s REST APIs. Depending on how the process is designed, ie with no transaction boundaries, you will get back in the response the results of the process. For more information see this and use “withVariablesInReturn” boolean in the request body.

Joe