Start zeebe to create Synchronous instance

How to create instance Synchronously with Zeebe client in Camunda 8.2

Hi @Pratiksha1205,

here is an example how to achieve this with the help of individual task-types and asynchronous programming: https://github.com/camunda-community-hub/camunda-8-examples/tree/main/synchronous-response-springboot

Hope this helps, Ingo

@Ingo_Richtsmeier
I believe this example is of asynchronous… I am looking out for synchronous flow in Camunda 8.

Hi @Pratiksha1205,

these lines of the controller allow a synchronous response to the start process instance REST request: https://github.com/camunda-community-hub/camunda-8-examples/blob/d1e0b5cf5ae0ed34f2f16f90dc992232a34ed3d5/synchronous-response-springboot/src/main/java/org/example/camunda/process/solution/facade/ProcessController.java#L49-L64

Hope this helps, Ingo