In the Zeebe Slack and the Forum, a number of users have been inquiring about initiating a Zeebe workflow via a REST request, and returning the outcome of the workflow in the REST response. Zeebe workflows are fully decoupled, asynchronous, and have no awaitable outcome. This means there is nothing out-of-the-box right now to do this. We are evaluating demand for this feature in GitHub, both in terms of its eventual shape and its priority. Let’s look at the problem in more detail, how we can match it with Zeebe’s model, and a few different solutions that you can implement now. I’m going to be using the TypeScript Zeebe client for code examples in this article, but the concepts are…
By Josh Wulf