Solutioning question

need suggestion on how to model this through springboot based camunda app.

  • The app should expose a REST end point.
  • Rest endpoint should accept a request containing. A token in header , content-type=application/json and payload in JSON format.
  • Once the request is received the Camunda app should create a process and call another service with the input received as part of rest request.
  • The response should be returned to the caller.

Just create a process and don’t set “async before” or “async after”. Then the whole process will be executed in one thread synchronously. But then I miss the point why I’d want to use a process here.

This is just a initial step. We will be adding manual processing and user forms later.